43 lines
756 B
SCSS
43 lines
756 B
SCSS
@import '../button/index';
|
|
@import '../radiogroup/index';
|
|
@import '../radio/index';
|
|
@import '../form/index';
|
|
@import '../formitem/index';
|
|
|
|
.nut-theme-dark {
|
|
.nut-invoice {
|
|
.nut-invoice__submit {
|
|
background: $dark-background2;
|
|
}
|
|
}
|
|
}
|
|
|
|
.nut-invoice {
|
|
position: relative;
|
|
width: 100%;
|
|
|
|
.nut-cell {
|
|
align-items: baseline;
|
|
}
|
|
|
|
&__submit {
|
|
position: fixed;
|
|
bottom: 0;
|
|
bottom: constant(safe-area-inset-bottom);
|
|
bottom: env(safe-area-inset-bottom);
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
padding: $invoice-padding;
|
|
background: #fff;
|
|
}
|
|
|
|
.nut-radio {
|
|
display: inline-block;
|
|
margin-right: 6px;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|