You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
388 B
CSS

.logo {
display: flex;
flex-direction: row;
align-items: center;
gap: 12px;
}
.vertical {
flex-direction: column;
}
.icon {
width: 60px;
}
.title {
font-weight: 800;
font-size: 1.75rem;
}
@media screen and (max-width: 640px) {
.logo {
gap: 8px;
}
.icon {
width: 40px;
}
.title {
font-size: 1.25rem;
}
}