Personal-site/components/modules/Avatar.module.css
2020-06-14 16:45:20 +02:00

22 lines
278 B
CSS

.big {
width: 256px;
height: 256px;
border: 6px solid var(--dark);
border-radius: 16px;
}
.small {
width: 64px;
height: 64px;
border: 4px solid var(--lightDark);
border-radius: 8px;
}
@media screen and (max-width: 1440px) {
.big {
display: none;
}
}