2021-12-21 02:27:25 +01:00
|
|
|
@import '../init/breakpoints';
|
2021-11-03 22:52:18 +01:00
|
|
|
|
|
|
|
.claimPreviewReset {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2021-11-09 18:52:05 +01:00
|
|
|
justify-content: space-between;
|
2021-11-03 22:52:18 +01:00
|
|
|
padding-top: var(--spacing-xs);
|
|
|
|
color: var(--color-text-subtitle);
|
|
|
|
font-size: var(--font-small);
|
|
|
|
flex-direction: column;
|
|
|
|
@media (min-width: $breakpoint-xsmall) {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.claimPreviewReset__hint {
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: var(--spacing-s);
|
|
|
|
@media (min-width: $breakpoint-xsmall) {
|
|
|
|
margin-right: var(--spacing-xl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.claimPreviewReset__button {
|
|
|
|
margin-top: var(--spacing-s);
|
|
|
|
width: 100%;
|
|
|
|
.button__content {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
@media (min-width: $breakpoint-xsmall) {
|
|
|
|
margin-top: 0;
|
|
|
|
width: auto;
|
|
|
|
.button__content {
|
|
|
|
justify-content: start;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|