66 lines
1.1 KiB
CSS
66 lines
1.1 KiB
CSS
.wrapper {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: var(--Spacing-x3);
|
|
padding-top: var(--Spacing-x3);
|
|
}
|
|
|
|
.wrapper::after {
|
|
position: absolute;
|
|
left: 12px;
|
|
bottom: 0;
|
|
top: var(--Spacing-x5);
|
|
height: 100%;
|
|
content: "";
|
|
border-left: 1px solid var(--Primary-Light-On-Surface-Divider-subtle);
|
|
}
|
|
|
|
.main {
|
|
display: grid;
|
|
width: 100%;
|
|
border-bottom: 1px solid var(--Primary-Light-On-Surface-Divider-subtle);
|
|
padding-bottom: var(--Spacing-x3);
|
|
grid-template-rows: 2em 0fr;
|
|
}
|
|
|
|
.headerContainer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.selection {
|
|
font-weight: 450;
|
|
font-size: var(--typography-Title-4-fontSize);
|
|
}
|
|
|
|
.iconWrapper {
|
|
position: relative;
|
|
top: var(--Spacing-x1);
|
|
z-index: 2;
|
|
}
|
|
|
|
.circle {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 100px;
|
|
border: 2px solid var(--Base-Border-Inverted);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.circle {
|
|
background-color: var(--UI-Input-Controls-Fill-Selected);
|
|
}
|
|
|
|
.rate {
|
|
color: var(--UI-Text-Placeholder);
|
|
}
|
|
|
|
.details {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
}
|