36 lines
637 B
SCSS
36 lines
637 B
SCSS
.promo-panel {
|
|
margin-top: 10px;
|
|
background-color: transparent !important;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.promo-panel-item {
|
|
@include standard-panel-shadow;
|
|
display: block;
|
|
height: 42px;
|
|
line-height: 42px;
|
|
color: var(--primary-text-color);
|
|
border-bottom: 1px solid var(--brand-color--med);
|
|
background: var(--foreground-color);
|
|
text-decoration: none;
|
|
font-size: 15px;
|
|
padding: 0 20px;
|
|
|
|
&:last-of-type {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: var(--primary-text-color--faint);
|
|
|
|
span {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
&__icon,
|
|
.icon-with-counter {
|
|
margin-right: 12px;
|
|
}
|
|
}
|