[THEME] Fix the width when long info
This commit is contained in:
parent
ff9cff42e3
commit
0744d14583
1 changed files with 12 additions and 0 deletions
|
@ -233,6 +233,18 @@ a.not(.anchor):focus {
|
|||
/******************* Author Infos *******************/
|
||||
#author {
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
max-width: 90vw;
|
||||
}
|
||||
@media only screen and (max-width: 320px) {
|
||||
#author {
|
||||
max-width: 100vw;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1000px) {
|
||||
#author {
|
||||
max-width: var(--content-width);
|
||||
}
|
||||
}
|
||||
#social {
|
||||
list-style: none;
|
||||
|
|
Loading…
Reference in a new issue