21 lines
298 B
SCSS
21 lines
298 B
SCSS
@import "../../globals.scss";
|
|
|
|
#reclamespinner {
|
|
display: grid;
|
|
grid-template-rows: 1fr;
|
|
grid-template-columns: 35px 1fr 35px;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
}
|
|
|
|
#reclamecontainer {
|
|
height: $reclameheight;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.reclameitem {
|
|
height: 100%;
|
|
}
|
|
|