github.com/freiheit-com/kuberpult@v1.24.2-0.20240328135542-315d5630abe6/services/frontend-service/src/ui/components/button/button.scss (about)

     1  /*This file is part of kuberpult.
     2  
     3  Kuberpult is free software: you can redistribute it and/or modify
     4  it under the terms of the Expat(MIT) License as published by
     5  the Free Software Foundation.
     6  
     7  Kuberpult is distributed in the hope that it will be useful,
     8  but WITHOUT ANY WARRANTY; without even the implied warranty of
     9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    10  MIT License for more details.
    11  
    12  You should have received a copy of the MIT License
    13  along with kuberpult. If not, see <https://directory.fsf.org/wiki/License:Expat>.
    14  
    15  Copyright 2023 freiheit.com*/
    16  @use '@material/button/mdc-button';
    17  
    18  .mdc-button {
    19      @extend .font;
    20  }
    21  
    22  .expand-button {
    23      border-width: thin;
    24      border-radius: 14px;
    25      border-color: blue;
    26      border-style: groove;
    27  
    28      .first-two {
    29          height: 36px;
    30          .button-main {
    31              border-radius: 12px 0 0 12px;
    32          }
    33          .button-expand {
    34              padding: 0;
    35              min-width: 36px;
    36              .dropdown-arrow {
    37                  margin-bottom: 40%; // to center the arrow
    38                  font-size: xx-large;
    39              }
    40          }
    41      }
    42  }