Authored by yyq

fix style

... ... @@ -75,6 +75,7 @@ export default {
color: #fff;
overflow: hidden;
display: flex;
align-items: stretch;
&.theme-white {
background-color: #fff;
... ... @@ -87,6 +88,10 @@ export default {
color: #fff;
}
> * {
position: relative;
}
.flex {
display: flex;
align-items: center;
... ...
... ... @@ -311,9 +311,11 @@
}
.header-author {
width: 100%;
height: 100%;
position: relative;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
.flex {
height: 100%;
... ... @@ -402,11 +404,12 @@
.name {
position: absolute;
word-break: keep-all;
font-size: 20px;
font-weight: 300;
color: #9b9b9b;
margin-left: 50%;
word-break: keep-all;
white-space: nowrap;
> * {
position: relative;
... ...