Wallet/src/sass/views/tab-settings.scss

36 lines
652 B
SCSS
Raw Normal View History

#tab-settings {
.list {
.item {
color: #444;
border-top: none;
padding-top: 1.5rem;
padding-bottom: 1.5rem;
&:before {
display: block;
position: absolute;
width: 100%;
height: 1px;
background: rgba(221, 221, 221, 0.3);
top: 0;
right: 0;
content: '';
}
2016-09-21 14:28:52 -04:00
&.item-divider{
color:rgba(74, 74, 74, .8);
}
&.item-heading {
&:before {
top: 99%
}
}
&:nth-child(2) {
&:before {
width: 0;
}
}
2016-09-21 14:28:52 -04:00
.item-note{
color:rgb(58, 58, 58);
}
}
}
}