mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-08 08:53:51 +00:00
ac4257ece9
fix: parsing of custom fields for blocks refactor: extract cuesheet settings refactor: cuesheet actions refactor: improve cuesheet performance on resizing
40 lines
544 B
SCSS
40 lines
544 B
SCSS
@use '../../../theme/viewerDefs' as *;
|
|
@import './BaseButtonStyles.module.scss';
|
|
|
|
.baseIconButton {
|
|
aspect-ratio: 1;
|
|
display: grid;
|
|
place-content: center;
|
|
|
|
border: 1px solid transparent;
|
|
border-radius: $component-border-radius-md;
|
|
|
|
cursor: pointer;
|
|
|
|
&:disabled {
|
|
opacity: 0.4;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
|
|
.small {
|
|
height: 1.5rem;
|
|
font-size: calc(1rem - 3px);
|
|
}
|
|
|
|
.medium {
|
|
height: 2rem;
|
|
width: 2rem;
|
|
}
|
|
|
|
.large {
|
|
height: 2.5rem;
|
|
width: 2.5rem;
|
|
}
|
|
|
|
.xlarge {
|
|
height: 3rem;
|
|
height: 3rem;
|
|
font-size: 1.5rem;
|
|
}
|