mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
added user context
This commit is contained in:
parent
f631f79654
commit
e881512f63
13 changed files with 116 additions and 160 deletions
50
src/views/node/NodeComments/styles.module.scss
Normal file
50
src/views/node/NodeComments/styles.module.scss
Normal file
|
@ -0,0 +1,50 @@
|
|||
@import "../../../styles/variables";
|
||||
|
||||
.wrap {
|
||||
& > div {
|
||||
margin: 0 0 $gap 0;
|
||||
|
||||
&:last-child {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.more {
|
||||
padding: $gap;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: $radius;
|
||||
text-transform: uppercase;
|
||||
color: darken(white, 60%);
|
||||
font: $font_14_medium;
|
||||
cursor: pointer;
|
||||
transition: all 0.25s;
|
||||
user-select: none;
|
||||
background: url('../../../sprites/stripes.svg');
|
||||
position: relative;
|
||||
|
||||
&:hover {
|
||||
color: $wisegreen;
|
||||
background-color: darken($wisegreen, 12%);
|
||||
|
||||
.bar {
|
||||
background: $wisegreen;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bar {
|
||||
position: absolute;
|
||||
height: 2px;
|
||||
border-radius: 2px;
|
||||
background: darken(white, 60%);
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
transform: translate(-50%, 0);
|
||||
width: 50%;
|
||||
transition: width 0.25s;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue