github.com/freiheit-com/kuberpult@v1.24.2-0.20240328135542-315d5630abe6/services/frontend-service/src/ui/components/LocksTable/LocksTable.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/data-table/data-table'; 17 18 .mdc-data-table__table { 19 width: 100%; 20 } 21 22 .mdc-data-table { 23 margin: $locks-list-margin; 24 } 25 26 .mdc-data-indicator { 27 background-color: var(--mdc-theme-primary); 28 color: var(--mdc-theme-on-primary); 29 height: $locks-list-header-height; 30 border-radius: $locks-list-header-border-radius; 31 @extend .text-regular; 32 33 .mdc-data-indicator-header { 34 display: flex; 35 padding-inline: $locks-list-header-padding; 36 } 37 38 .mdc-data-header-title { 39 @extend .headline1; 40 } 41 42 .mdc-data-indicator-field { 43 flex: 1; 44 @extend .sub-headline1; 45 } 46 47 .mdc-data-indicator-sort-button { 48 padding-inline: 0; 49 } 50 }