kgroad-frontend2/src/shared/ui/components/Typography/Typography.scss
Vladislav Khorev e0e2f5470d renamed folders
2024-02-14 08:04:02 +00:00

28 lines
443 B
SCSS

@import "../../variables.scss";
.typography-h2,
.typography-h3 {
width: fit-content;
text-align: center;
color: $black;
font-size: 42px;
font-weight: 500;
line-height: 50px;
}
@media screen and (max-width: 768px) {
.typography-h2,
.typography-h3 {
font-size: 36px;
line-height: 43px;
}
}
@media screen and (max-width: 550px) {
.typography-h2,
.typography-h3 {
font-size: 24px;
line-height: 29px;
}
}