Improved layout on smaller devices
This commit is contained in:
parent
5ab1167d38
commit
52c7922002
@ -58,7 +58,7 @@
|
|||||||
background-color: var(--color-grey-translucent);
|
background-color: var(--color-grey-translucent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media only screen and (max-device-width: 620px) {
|
@media only screen and (max-width: 620px) {
|
||||||
.mastodonInstance,
|
.mastodonInstance,
|
||||||
.feedSuffix {
|
.feedSuffix {
|
||||||
display: none;
|
display: none;
|
||||||
@ -68,7 +68,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-device-width: 430px) {
|
@media only screen and (max-width: 430px) {
|
||||||
.mastodonInstance,
|
.mastodonInstance,
|
||||||
.feedSuffix,
|
.feedSuffix,
|
||||||
.secretIngredient {
|
.secretIngredient {
|
||||||
@ -76,7 +76,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-device-width: 370px) {
|
@media only screen and (max-width: 370px) {
|
||||||
.label {
|
.label {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
@ -34,9 +34,9 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
}
|
}
|
||||||
@media only screen and (max-device-width: 620px) {
|
@media only screen and (max-width: 620px) {
|
||||||
.footer {
|
.footer {
|
||||||
width: calc(100% + 16px);
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -202,9 +202,10 @@
|
|||||||
z-index: 100;
|
z-index: 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-device-width: 650px) {
|
@media only screen and (max-width: 650px) {
|
||||||
.post {
|
.post {
|
||||||
max-width: 100vw;
|
max-width: calc(100vw - 16px);
|
||||||
|
padding: 1em 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user