17 lines
327 B
SCSS
17 lines
327 B
SCSS
|
|
@use 'globals';
|
||
|
|
|
||
|
|
@mixin th {
|
||
|
|
border: globals.$default-border;
|
||
|
|
border-top: none;
|
||
|
|
font-family: 'Funnel Sans';
|
||
|
|
font-weight: bolder;
|
||
|
|
background: #0001;
|
||
|
|
height: 100%; /* css hack to make percentage based cell heights work */
|
||
|
|
padding: 0.25rem 0.5rem;
|
||
|
|
text-align: left;
|
||
|
|
|
||
|
|
&:first-child {
|
||
|
|
border-left: none;
|
||
|
|
}
|
||
|
|
}
|