30 lines
402 B
SCSS
30 lines
402 B
SCSS
.icon-list {
|
|
text-align: left;
|
|
min-width: 200px;
|
|
margin: 0 1.5rem;
|
|
|
|
@media screen and (max-width: 1100px) {
|
|
flex-basis: 400px;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
|
|
li {
|
|
line-height: 2rem;
|
|
}
|
|
}
|
|
|
|
.flex-center {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
[class^='icon-'] {
|
|
color: #fff;
|
|
margin-right: 0.25rem;
|
|
}
|
|
}
|