github.com/pyroscope-io/pyroscope@v0.37.3-0.20230725203016-5f6947968bd0/webapp/javascript/pages/IntroPages/SignIn/buttons.module.css (about)

     1  .buttonContainer {
     2    width: 100%;
     3    display: flex;
     4    flex-direction: column;
     5    justify-content: space-around;
     6    align-items: center;
     7  }
     8  
     9  .buttonContainer > :not(:last-child) {
    10    margin-bottom: 15px;
    11  }
    12  
    13  .buttonGithub {
    14    background-color: var(--ps-immutable-github-button);
    15  }
    16  
    17  .buttonGithub:hover {
    18    background-color: var(--ps-immutable-github-button-hover);
    19  }
    20  
    21  .buttonGitlab {
    22    background-color: var(--ps-immutable-gitlab-button);
    23  }
    24  
    25  .buttonGitlab svg {
    26    width: 1em;
    27    vertical-align: -0.125em;
    28  }
    29  
    30  .buttonGitlab:hover {
    31    background-color: var(--ps-immutable-gitlab-button-hover);
    32  }
    33  
    34  .buttonGoogle {
    35    background-color: var(--ps-immutable-google-button);
    36  }
    37  
    38  .buttonGoogle svg {
    39    width: 1em;
    40    vertical-align: -0.125em;
    41  }
    42  
    43  .buttonGoogle:hover {
    44    background-color: var(--ps-immutable-google-button-hover);
    45  }
    46  
    47  .buttonGithub,
    48  .buttonGoogle,
    49  .buttonGitlab {
    50    color: var(--ps-immutable-off-white);
    51  }