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

72 lines
1.3 KiB
SCSS
Raw Normal View History

.settings {
.item {
color: #444;
border-color: rgba(221, 221, 221, 0.3);
}
}
#tab-settings {
.setting-title, .setting-value {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.setting-value {
color: $light-gray;
font-size: 14px;
}
.list {
.item {
color: #444;
border-top: none;
2016-10-03 20:01:27 -04:00
padding-top: 1.3rem;
padding-bottom: 1.3rem;
.big-icon-svg {
& > .bg{
width:20px;
height:20px;
border-radius: 0;
box-shadow: none;
}
&.circle{
left:8px;
.bg {
border-radius: 50%;
width: 25px;
height: 25px;
padding:.1rem;
}
}
}
&:before {
display: block;
position: absolute;
width: 100%;
height: 1px;
background: rgba(221, 221, 221, 0.3);
top: 0;
right: 0;
content: '';
}
&.item-divider {
2016-10-03 20:01:27 -04:00
color: $mid-gray;
padding-bottom: .5rem;
font-size: .9rem;
2016-09-21 14:28:52 -04:00
}
&.item-heading {
&:before {
top: 99%
}
}
&:nth-child(2) {
&:before {
width: 0;
}
}
}
}
2016-10-03 20:01:27 -04:00
.item-radio .radio-icon {
font-size: 18px;
}
}