Small CSS cleanup

This commit is contained in:
Robin van der Linde 2024-04-24 21:02:00 +02:00
parent 4a19be48b2
commit 716f5fc9e0
Signed by untrusted user: Robin-van-der-Linde
GPG key ID: 53956B3252478F0D
4 changed files with 44 additions and 10 deletions

View file

@ -2420,6 +2420,28 @@ button.small,
color: var(--low-interaction-foreground);
}
.button.theme-button {
margin: 0;
margin-top: 0.25rem;
margin-bottom: 0.25rem;
/* Margin should be removed on larger screens */
@media (min-width: 768px) {
margin: 0;
margin-top: 0;
margin-bottom: 0;
}
/* Experimental support for foldable devices */
@media (horizontal-viewport-segments: 2) {
margin: 0;
margin-top: 0;
margin-bottom: 0;
}
}
button,
.button {
align-items: center;
@ -2440,10 +2462,6 @@ button,
color: var(--low-interaction-foreground);
}
.theme-button {
margin: 0 !important;
}
.button-shadow {
box-shadow: 0 5px 10px #88888888;
}