fix: align guarantee info button and text to the right regardless of breakpoint * fix: align guarantee info button and text to the right regardless of breakpoint Approved-by: Erik Tiekstra
21 lines
276 B
CSS
21 lines
276 B
CSS
.row {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.label {
|
|
align-items: flex-start;
|
|
display: flex;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.textDefault {
|
|
color: var(--Text-Default);
|
|
}
|
|
|
|
.guaranteeInfo {
|
|
text-align: right;
|
|
}
|