soapbox/app/styles/components/promo-panel.scss

52 lines
822 B
SCSS
Raw Normal View History

2020-06-03 02:11:01 +00:00
.promo-panel {
margin-top: 10px;
background-color: transparent !important;
overflow: hidden;
}
.promo-panel-item {
@include standard-panel-shadow;
2021-09-13 00:33:00 +00:00
display: flex;
align-items: center;
2020-06-03 02:11:01 +00:00
height: 42px;
line-height: 42px;
2020-11-11 00:22:02 +00:00
color: var(--primary-text-color);
2020-06-07 03:55:00 +00:00
border-bottom: 1px solid var(--brand-color--med);
2020-06-03 02:11:01 +00:00
background: var(--foreground-color);
2020-11-11 00:22:02 +00:00
text-decoration: none;
font-size: 15px;
padding: 0 20px;
2020-06-03 02:11:01 +00:00
&:last-of-type {
border-bottom: 0;
}
&:hover,
&:focus {
2020-11-11 00:22:02 +00:00
color: var(--primary-text-color--faint);
2020-06-03 02:11:01 +00:00
2020-11-11 00:22:02 +00:00
span {
text-decoration: underline;
2020-06-03 02:11:01 +00:00
}
}
2021-09-28 04:47:43 +00:00
i.fa {
font-size: 22px;
margin-right: 10px;
}
.svg-icon {
width: 24px;
height: 24px;
svg {
stroke-width: 1.3px;
}
}
2021-10-02 15:06:26 +00:00
> .svg-icon,
> .icon-with-counter {
margin-right: 12px;
}
2020-06-03 02:11:01 +00:00
}