Fix my account settings responsive

This commit is contained in:
Chocobozzz 2019-04-11 11:18:19 +02:00
parent 5d79474cc6
commit 2c3abc4fa7
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
4 changed files with 20 additions and 2 deletions

View File

@ -16,6 +16,14 @@
& > div { & > div {
width: 350px; width: 350px;
@media screen and (max-width: $small-view) {
width: auto;
&:first-child {
flex-grow: 1;
}
}
} }
& > div { & > div {

View File

@ -18,6 +18,10 @@
.actor-info-display-name { .actor-info-display-name {
font-size: 20px; font-size: 20px;
font-weight: $font-bold; font-weight: $font-bold;
@media screen and (max-width: $small-view) {
font-size: 16px;
}
} }
.actor-info-username { .actor-info-username {
@ -48,4 +52,4 @@
position: relative; position: relative;
top: -10px; top: -10px;
} }

View File

@ -147,7 +147,7 @@ label {
} }
@media screen and (max-width: 500px) { @media screen and (max-width: 500px) {
margin-right: 20px; margin-right: 15px;
} }
} }
@ -382,6 +382,8 @@ table {
} }
.sub-menu { .sub-menu {
width: 100vw;
overflow-x: auto;
padding-left: 15px; padding-left: 15px;
padding-right: 15px; padding-right: 15px;
margin-bottom: 10px; margin-bottom: 10px;

View File

@ -235,6 +235,10 @@
position: relative; position: relative;
font-size: 15px; font-size: 15px;
@media screen and (max-width: $width) {
width: 100%;
}
&:after { &:after {
top: 50%; top: 50%;
right: calc(0% + 15px); right: calc(0% + 15px);