19 lines
270 B
SCSS
19 lines
270 B
SCSS
.not-found{
|
|
display: flex;
|
|
justify-content: center;
|
|
font-size: 25px;
|
|
line-height: 28px;
|
|
color: var(--selection);
|
|
tansition: 0.3s;
|
|
}
|
|
|
|
|
|
@media screen and (max-width: 500px) {
|
|
.not-found {
|
|
font-size: 14px;
|
|
line-height: 14px;
|
|
}
|
|
}
|
|
|
|
|