mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-13 23:48:55 +01:00
30 lines
534 B
SCSS
30 lines
534 B
SCSS
.carousel {
|
|
position: relative;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
&::before {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
content: '\f03e';
|
|
font-family: 'Font Awesome 5 Free' !important;
|
|
font-weight: 900;
|
|
font-size: 80px;
|
|
color: #ebebeb;
|
|
}
|
|
|
|
&-inner {
|
|
aspect-ratio: 16/9;
|
|
}
|
|
|
|
&-inner > .item {
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.ui-select-bootstrap .ui-select-choices-row > span {
|
|
white-space: normal;
|
|
} |