bigbuffet-rw/app/styles/components/promo-panel.scss

37 lines
637 B
SCSS
Raw Normal View History

2020-06-02 19:11:01 -07:00
.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;
2020-11-10 16:22:02 -08:00
color: var(--primary-text-color);
2020-06-06 20:55:00 -07:00
border-bottom: 1px solid var(--brand-color--med);
2020-06-02 19:11:01 -07:00
background: var(--foreground-color);
2020-11-10 16:22:02 -08:00
text-decoration: none;
font-size: 15px;
padding: 0 20px;
2020-06-02 19:11:01 -07:00
&:last-of-type {
border-bottom: 0;
}
&:hover,
&:focus {
2020-11-10 16:22:02 -08:00
color: var(--primary-text-color--faint);
2020-06-02 19:11:01 -07:00
2020-11-10 16:22:02 -08:00
span {
text-decoration: underline;
2020-06-02 19:11:01 -07:00
}
}
&__icon,
.icon-with-counter {
2020-06-02 19:11:01 -07:00
margin-right: 12px;
}
}