mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-09 16:53:36 -05:00
Fix: Small mobile fixes, paddings
This commit is contained in:
parent
b5a11d5c8f
commit
f1d413b6ef
3 changed files with 19 additions and 6 deletions
|
@ -147,14 +147,18 @@
|
|||
|
||||
@media (pointer: coarse) {
|
||||
.item {
|
||||
height: 55px;
|
||||
height: 40px;
|
||||
|
||||
&.compact {
|
||||
height: 50px;
|
||||
|
||||
div > svg {
|
||||
height: 22px;
|
||||
width: 22px;
|
||||
> div {
|
||||
gap: 20px;
|
||||
|
||||
> svg {
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -85,7 +85,7 @@ export function GenericSettings({
|
|||
<>
|
||||
{showExitButton && (
|
||||
<IconButton onClick={exitSettings}>
|
||||
<X size={24} />
|
||||
<X size={27} style={{marginInlineEnd: "8px"}} />
|
||||
</IconButton>
|
||||
)}
|
||||
<Text id="app.settings.title" />
|
||||
|
@ -93,7 +93,7 @@ export function GenericSettings({
|
|||
) : (
|
||||
<>
|
||||
<IconButton onClick={() => switchPage()}>
|
||||
<ArrowBack size={24} />
|
||||
<ArrowBack size={24} style={{marginInlineEnd: "10px"}} />
|
||||
</IconButton>
|
||||
<Text
|
||||
id={`app.settings.${category}.${page}.title`}
|
||||
|
|
|
@ -186,12 +186,21 @@
|
|||
text-transform: unset;
|
||||
|
||||
a {
|
||||
|
||||
opacity: 0.7;
|
||||
color: var(--accent);
|
||||
font-weight: 600;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 800px) {
|
||||
a {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue