35 lines
508 B
SCSS
35 lines
508 B
SCSS
|
|
@use 'globals';
|
||
|
|
|
||
|
|
.cell__container {
|
||
|
|
display: block;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
border: solid 2px transparent;
|
||
|
|
|
||
|
|
&--selected {
|
||
|
|
border-color: #07f;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.cell__content {
|
||
|
|
font-family: globals.$font-family-data;
|
||
|
|
max-width: 100%;
|
||
|
|
|
||
|
|
&--padded {
|
||
|
|
padding: 0.25rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
&--null {
|
||
|
|
opacity: 0.5;
|
||
|
|
font-style: oblique;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
&--uuid {
|
||
|
|
font-family: globals.$font-family-mono;
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
}
|