mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-08-06 02:10:41 -05:00
dashboard is now responsive
This commit is contained in:
parent
0759e78217
commit
5383b42581
|
|
@ -69,4 +69,52 @@ nav.userNav .links .navItem:hover {
|
|||
nav.userNav .links .navItem.active {
|
||||
color: #673ab7;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 950px) {
|
||||
body .contentWrapper.userPage {
|
||||
flex-direction: column;
|
||||
}
|
||||
nav.userNav {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
}
|
||||
.contentCard {
|
||||
display: block;
|
||||
margin: auto;
|
||||
}
|
||||
nav.userNav .links {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: flex-end;
|
||||
}
|
||||
nav.userNav .links .navItem {
|
||||
display: inline-block;
|
||||
}
|
||||
nav.userNav .userNavProfile::after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 500px) {
|
||||
.contentCard {
|
||||
width: 100vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 450px) {
|
||||
nav.userNav {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
nav.userNav .links {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
nav.userNav .userNavProfile::after {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user