57 lines
1.1 KiB
SCSS
57 lines
1.1 KiB
SCSS
//
|
|
// _components-demo.scss
|
|
//
|
|
|
|
// Scrollspy
|
|
.scrollspy-example {
|
|
position: relative;
|
|
height: 200px;
|
|
margin-top: 0.5rem;
|
|
overflow: auto;
|
|
}
|
|
|
|
// Grid
|
|
.grid-structure {
|
|
.grid-container {
|
|
background-color: var(--#{$prefix}tertiary-bg);
|
|
margin-bottom: 10px;
|
|
font-size: 0.8rem;
|
|
font-weight: $font-weight-semibold;
|
|
padding: 10px 20px;
|
|
}
|
|
}
|
|
|
|
// Icons
|
|
.icons-list-demo {
|
|
div {
|
|
cursor: pointer;
|
|
line-height: 45px;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
display: block;
|
|
overflow: hidden;
|
|
|
|
p {
|
|
margin-bottom: 0;
|
|
line-height: inherit;
|
|
}
|
|
|
|
&:hover,
|
|
&:hover i {
|
|
color: var(--#{$prefix}primary);
|
|
}
|
|
}
|
|
|
|
i {
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
font-size: 24px;
|
|
width: 50px;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
margin-right: 12px;
|
|
border-radius: 3px;
|
|
display: inline-block;
|
|
transition: all 0.2s;
|
|
}
|
|
} |