30 lines
529 B
SCSS
30 lines
529 B
SCSS
#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: '';
|
|
}
|
|
&.item-heading {
|
|
&:before {
|
|
top: 99%
|
|
}
|
|
}
|
|
&:nth-child(2) {
|
|
&:before {
|
|
width: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|