soapbox/app/styles/components/accordion.scss

72 wiersze
1.3 KiB
SCSS
Czysty Zwykły widok Historia

2020-10-01 20:18:52 +00:00
.explanation-box {
padding: 5px 20px;
2020-10-01 20:18:52 +00:00
}
.accordion {
@apply text-black dark:text-white bg-gray-100 dark:bg-gray-900;
2020-10-01 20:18:52 +00:00
padding: 15px 20px;
font-size: 14px;
border-radius: 8px;
margin: 0;
position: relative;
2020-10-01 20:18:52 +00:00
&__title {
font-weight: bold !important;
font-size: 16px !important;
background: transparent !important;
color: var(--primary-text-color) !important;
2020-10-01 20:18:52 +00:00
padding: 0 !important;
margin: 0 !important;
text-transform: none !important;
text-align: left !important;
display: flex !important;
2021-01-01 02:47:15 +00:00
align-items: center;
border: 0;
width: 100%;
2020-10-01 20:18:52 +00:00
&::after {
2022-04-29 02:36:28 +00:00
@apply text-black dark:text-white;
2020-10-01 20:18:52 +00:00
content: '';
display: block;
2021-10-06 05:11:36 +00:00
font-family: 'Font Awesome 5 Free';
font-weight: 900;
font-size: 0.8em;
padding-left: 0.6em;
2020-10-01 20:18:52 +00:00
margin-left: auto;
}
}
&__menu {
position: absolute;
top: 17px;
right: 40px;
}
2020-10-01 20:18:52 +00:00
&__content {
height: 0;
overflow: hidden;
}
&--expanded &__title {
margin-bottom: 10px !important;
&::after {
2022-04-24 23:54:46 +00:00
@apply text-black dark:text-white;
2020-10-01 20:18:52 +00:00
content: '';
}
}
&--expanded &__content {
height: auto;
}
a {
color: var(--brand-color--hicontrast);
text-decoration: underline;
&:hover {
text-decoration: none;
}
}
}