summaryrefslogtreecommitdiff
path: root/src/assets
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-07-27 12:41:24 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-07-27 12:41:24 +0300
commitd71cfa8e7748a994c19ff49c88ba303a8f2389e8 (patch)
treefcccab320ce8ba3e03fc16cbc95925ebb15b7d2a /src/assets
parentd60c112dd9fca0aec24e0193774932df8aa27ceb (diff)
downloadwebui-vue-d71cfa8e7748a994c19ff49c88ba303a8f2389e8.tar.xz
fix styles for dynamic pages
Diffstat (limited to 'src/assets')
-rw-r--r--src/assets/styles/bmc/_sila/_section-divider.scss43
1 files changed, 38 insertions, 5 deletions
diff --git a/src/assets/styles/bmc/_sila/_section-divider.scss b/src/assets/styles/bmc/_sila/_section-divider.scss
index 78415435..e30942cc 100644
--- a/src/assets/styles/bmc/_sila/_section-divider.scss
+++ b/src/assets/styles/bmc/_sila/_section-divider.scss
@@ -2,8 +2,9 @@
border-bottom: 1px solid gray('400');
}
-.custom-divider {
+.collapse-divider {
margin: 0 -1.95rem 0 -2rem;
+ padding-left: 2rem;
@include media-breakpoint-down(md) {
margin-left: -0.95rem;
}
@@ -15,9 +16,41 @@
}
}
.form-group {
- margin-bottom: 0;
- .col-form-label {
- white-space: nowrap;
- }
+ margin-bottom: 0;
+ .col-form-label {
+ white-space: nowrap;
+ }
}
}
+
+.page-divider {
+ height: 56px;
+ max-width: 150%;
+ width: auto;
+ margin: 0rem -1.95rem 0rem -1.95rem;
+ padding-left: 2rem;
+ @include media-breakpoint-down(md) {
+ padding-left: 1rem;
+ padding-right: 1rem;
+ margin-left: -0.95rem;
+ }
+ border-bottom: 1px solid $gray-10;
+ gap: 8px;
+}
+
+.limit-container {
+ margin: 0rem -1.95rem 0rem -1.95rem;
+ padding-left: 1rem;
+ padding-bottom: 1rem;
+ @include media-breakpoint-down(md) {
+ padding-left: 0rem;
+ padding-right: 1rem;
+ margin-left: -0.95rem;
+ }
+ .form-group {
+ margin-bottom: 0;
+ .col-form-label {
+ white-space: nowrap;
+ }
+ }
+}