fix: limit image sizes

This commit is contained in:
verbiricha 2023-07-30 00:30:35 +02:00
parent d8a9aee136
commit f0829f35e1
2 changed files with 22 additions and 9 deletions

View File

@ -1,3 +1,7 @@
.event-container .note {
max-width: 320px;
}
.event-container .goal {
font-size: 14px;
}

View File

@ -13,13 +13,13 @@
}
}
@media (min-width: 1600px){
@media (min-width: 1600px) {
.stream-cards {
grid-template-columns: repeat(3, 1fr);
}
}
@media (min-width: 2100px){
@media (min-width: 2100px) {
.stream-cards {
grid-template-columns: repeat(4, 1fr);
}
@ -98,7 +98,6 @@
line-height: 20px;
}
.new-card textarea {
width: unset;
background: #262626;
@ -145,13 +144,23 @@
}
@keyframes shake {
0% { transform: rotate(0deg); }
25% { transform: rotate(5deg); }
50% { transform: rotate(0eg); }
75% { transform: rotate(-5deg); }
100% { transform: rotate(0deg); }
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(5deg);
}
50% {
transform: rotate(0eg);
}
75% {
transform: rotate(-5deg);
}
100% {
transform: rotate(0deg);
}
}
.stream-card .card-image {
width: 100%;
max-width: 343px;
}