Files
web/components/TempDesignSystem/Form/Country/country.module.css
2024-06-13 10:00:16 +02:00

58 lines
1.4 KiB
CSS

.container {
--select-border: 2px solid var(--UI-Grey-60);
--select-width: min(28rem, 100%);
}
.comboBoxContainer {
background-color: var(--Main-Grey-White);
display: grid;
grid-template-areas: "content";
width: var(--select-width);
}
.input {
background-color: var(--Main-Grey-White);
border: var(--select-border);
border-radius: var(--Corner-radius-Small);
grid-area: content;
height: 40px;
padding: var(--Spacing-x1) var(--Spacing-x2);
width: var(--select-width);
}
.input,
.listBoxItem {
color: var(--UI-Grey-60);
font-family: var(--typography-Body-Regular-fontFamily);
font-size: var(--typography-Body-Regular-fontSize);
font-weight: var(--typography-Body-Regular-fontWeight);
font-weight: var(--typography-Body-Regular-fontWeight);
letter-spacing: var--typography-Body-Regular-letterSpacing;
line-height: var(--typography-Body-Regular-lineHeight);
}
.button {
background: none;
border: none;
cursor: pointer;
grid-area: content;
height: 100%;
justify-self: flex-end;
padding-left: 0;
padding-right: var(--Spacing-x2);
}
.popover {
background-color: var(--Main-Grey-White);
border: var(--select-border);
border-radius: var(--Corner-radius-Small);
overflow: auto;
padding: var(--Spacing-x2) var(--Spacing-x2) var(--Spacing-x2)
var(--Spacing-x1);
width: var(--select-width);
}
.listBoxItem {
padding: 0 var(--Spacing-x1);
}