31 lines
516 B
SCSS
31 lines
516 B
SCSS
.zafariClass {
|
|
opacity:1;
|
|
pointer-events: auto;
|
|
background-color: var(--bg);
|
|
text-align: center;
|
|
z-index: 10000;
|
|
overflow-y: scroll;
|
|
> div {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
max-width: 700px;
|
|
h2 {
|
|
font-family: _font(family);
|
|
}
|
|
ul {
|
|
padding: 20px;
|
|
width: 100%
|
|
}
|
|
li {
|
|
list-style-type: none;
|
|
margin: 20px;
|
|
padding: 0;
|
|
a {
|
|
display: block;
|
|
font-size: 14px
|
|
}
|
|
}
|
|
}
|
|
}
|