2024-07-18 11:42:53 +02:00

51 lines
983 B
SCSS

.root {
.mirror-shadow-element {
display: flex;
overflow: hidden;
background: red;
height: 0px;
}
.horizontal-container {
display: flex;
flex-direction: row;
flex: 1;
.horizontal-tab {
display: flex;
justify-content: space-evenly;
overflow: hidden;
}
}
.show-more-container {
position: relative;
border-bottom: 1px solid var(--color-neutral-500);
.vertical-container {
position: absolute;
display: flex;
flex-direction: column;
top: 50px;
padding: var(--spacing-05, 4px) var(--spacing-2, 16px);
background: var(--color-generic-white, #fff);
border: 1px solid var(--menu-border, #d7dce0);
border-radius: var(--menu-radius, 0px);
box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
&[data-visible="false"] {
display: none;
}
}
}
.show-more {
padding: 8px 16px;
display: flex;
color: white;
font-size: 16px;
justify-content: center;
align-items: center;
color: white;
cursor: pointer;
}
}