mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-10 09:28:37 +08:00
2c88843924
Add main logic for consumption on task [SCI-6444] Co-authored-by: Anton <anton@scinote.net>
45 lines
818 B
SCSS
45 lines
818 B
SCSS
// scss-lint:disable SelectorDepth
|
|
// scss-lint:disable NestingDepth
|
|
|
|
.repository-stock-modal,
|
|
#consumeRepositoryStockValueModal {
|
|
.stock-update-view {
|
|
align-items: center;
|
|
display: grid;
|
|
grid-template-columns: 1fr auto 1fr;
|
|
|
|
.stock-initial-container,
|
|
.stock-final-container {
|
|
align-items: center;
|
|
background: $color-concrete;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
padding: .5em 0;
|
|
|
|
.value {
|
|
@include font-h1;
|
|
}
|
|
|
|
.subtitle {
|
|
@include font-small;
|
|
color: $color-silver-chalice;
|
|
}
|
|
|
|
.units {
|
|
@include font-small;
|
|
}
|
|
|
|
&.error {
|
|
.value {
|
|
color: $brand-danger;
|
|
}
|
|
}
|
|
}
|
|
|
|
.stock-arrow {
|
|
@include font-h1;
|
|
padding: 1em;
|
|
}
|
|
}
|
|
}
|