23 lines
376 B
SCSS
23 lines
376 B
SCSS
@import 'styles/Variables.scss';
|
|
|
|
.wrapper {
|
|
font-size: 1em;
|
|
|
|
:global(.title) {
|
|
color: $main-active-font-color;
|
|
margin-top: -2em;
|
|
}
|
|
}
|
|
|
|
.legacy {
|
|
background-image:
|
|
repeating-linear-gradient(
|
|
45deg,
|
|
transparent,
|
|
transparent 5px,
|
|
rgba(255, 255, 255, 0.5) 5px,
|
|
rgba(255, 255, 255, 0.5) 10px
|
|
);
|
|
background-size: 14px 14px;
|
|
}
|