mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-26 05:16:41 +07:00
fixed style files module names
This commit is contained in:
parent
52acdb283e
commit
2daa38ad12
223 changed files with 113 additions and 114 deletions
90
src/containers/profile/ProfilePageLeft/styles.module.scss
Normal file
90
src/containers/profile/ProfilePageLeft/styles.module.scss
Normal file
|
@ -0,0 +1,90 @@
|
|||
.wrap {
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
justify-content: stretch;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.avatar {
|
||||
width: 100%;
|
||||
padding-bottom: 75%;
|
||||
border-radius: 0 $radius 0 0;
|
||||
background: 50% 50% no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.region_wrap {
|
||||
width: 100%;
|
||||
// padding: 0 10px;
|
||||
position: relative;
|
||||
margin-top: -$radius;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.region {
|
||||
// background: $content_bg;
|
||||
background: darken($content_bg, 2%);
|
||||
width: 100%;
|
||||
border-radius: 0 $radius $radius 0;
|
||||
}
|
||||
|
||||
.name {
|
||||
font: $font_24_semibold;
|
||||
color: white;
|
||||
padding: $gap $gap 0 $gap;
|
||||
text-transform: uppercase;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.username {
|
||||
font: $font_14_semibold;
|
||||
padding: 0 $gap $gap $gap;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
color: transparentize(white, 0.5);
|
||||
margin-top: $gap / 2;
|
||||
}
|
||||
|
||||
.menu {
|
||||
padding: $gap 0 $gap 0;
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
width: 100%;
|
||||
flex-direction: column;
|
||||
box-sizing: border-box;
|
||||
display: none;
|
||||
|
||||
a {
|
||||
width: 100%;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
text-transform: uppercase;
|
||||
font: $font_18_semibold;
|
||||
padding: $gap $gap;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
opacity: 0.5;
|
||||
box-sizing: border-box;
|
||||
transition: opacity 0.25s;
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
svg {
|
||||
margin-right: $gap;
|
||||
fill: currentColor;
|
||||
}
|
||||
}
|
||||
|
||||
.description {
|
||||
padding: $gap;
|
||||
box-sizing: border-box;
|
||||
// background: darken($content_bg, 2%);
|
||||
background: darken($content_bg, 4%);
|
||||
// margin: 0 $gap;
|
||||
border-radius: 0 0 $radius $radius;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue