aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/main/frontend/resources/scss/features/_general.scss
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-workflow-designer-ui/src/main/frontend/resources/scss/features/_general.scss')
-rw-r--r--sdc-workflow-designer-ui/src/main/frontend/resources/scss/features/_general.scss39
1 files changed, 39 insertions, 0 deletions
diff --git a/sdc-workflow-designer-ui/src/main/frontend/resources/scss/features/_general.scss b/sdc-workflow-designer-ui/src/main/frontend/resources/scss/features/_general.scss
new file mode 100644
index 00000000..f11c2c0a
--- /dev/null
+++ b/sdc-workflow-designer-ui/src/main/frontend/resources/scss/features/_general.scss
@@ -0,0 +1,39 @@
+.general-page {
+ @include body-1;
+ padding: 35px 90px 0 50px;
+ background-color: #fff;
+
+ .general-page-title {
+ height: 110px;
+ line-height: 110px;
+ @include heading-1-emphasis;
+ color: $dark-gray;
+ }
+
+ .general-page-content {
+ display: grid;
+ grid-template-columns: 60% 40%;
+ grid-gap: 40px;
+ color: #444;
+
+ .description-part textarea {
+ height: 200px;
+ padding-top: 5px;
+ }
+
+ .version-info-part {
+ background-color: $light-silver;
+ height: 200px;
+ margin-top: 22px;
+ padding: 20px;
+ box-sizing: border-box;
+ .label {
+ @include body-3;
+ margin-bottom: 5px;
+ }
+ .value {
+ margin-bottom: 10px;
+ }
+ }
+ }
+}