49 lines
974 B
CSS
Raw Normal View History

2024-10-30 19:20:43 +01:00
.input-group {
> div {
flex-grow: 1;
2024-08-20 15:57:58 +02:00
2024-10-30 19:20:43 +01:00
> div {
display: flex;
align-items: flex-end;
2024-08-20 15:57:58 +02:00
2024-10-30 19:20:43 +01:00
> div:first-child {
flex: 1;
2024-10-30 19:20:43 +01:00
input {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-right: none;
}
2024-08-20 15:57:58 +02:00
2024-10-30 19:20:43 +01:00
select {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
min-width: 110px;
}
}
2024-08-20 15:57:58 +02:00
2024-10-30 19:20:43 +01:00
> div:nth-child(2) {
display: flex;
align-items: center;
border: 1px solid var(--codex-border-color);
border-top-right-radius: var(--codex-border-radius);
border-bottom-right-radius: var(--codex-border-radius);
background-color: var(--codex-border-color);
padding: calc(0.5rem + 0.5px);
}
}
}
2024-10-30 19:20:43 +01:00
p {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 0;
2024-10-04 18:38:54 +02:00
2024-10-30 19:20:43 +01:00
small {
height: 15px;
display: inline-block;
}
}
2024-10-04 18:38:54 +02:00
}