Skip to content

Commit 8488800

Browse files
author
Julia Volkova
committed
added framework styles
1 parent b22eb34 commit 8488800

File tree

2 files changed

+92
-0
lines changed

2 files changed

+92
-0
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
#form-container {
2+
display: grid;
3+
grid-template-columns: 1fr 2fr;
4+
grid-template-rows: auto auto;
5+
gap: 24px 40px;
6+
min-width: 720px;
7+
max-width: 900px;
8+
margin: auto;
9+
}
10+
11+
.instruction {
12+
color: var(--dx-texteditor-color-label);
13+
}
14+
15+
.textarea-container {
16+
display: flex;
17+
flex-direction: column;
18+
gap: 16px;
19+
}
20+
21+
::ng-deep .dx-layout-manager .dx-field-item.dx-last-row {
22+
padding-top: 4px;
23+
}
24+
25+
::ng-deep .dx-toast-info .dx-toast-icon {
26+
display: none;
27+
}
28+
29+
::ng-deep .buttons-group {
30+
display: flex;
31+
width: 100%;
32+
justify-content: end;
33+
}
34+
35+
::ng-deep .buttons-group .dx-item-content {
36+
gap: 8px;
37+
}
38+
39+
::ng-deep .buttons-group .dx-field-item:not(.dx-first-col),
40+
::ng-deep .buttons-group .dx-field-item:not(.dx-last-col) {
41+
padding: 0;
42+
}
43+
44+
::ng-deep .buttons-group .dx-item {
45+
flex: unset!important;
46+
}
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
#app {
2+
display: grid;
3+
grid-template-columns: 1fr 2fr;
4+
grid-template-rows: auto auto;
5+
gap: 24px 40px;
6+
min-width: 720px;
7+
max-width: 900px;
8+
margin: auto;
9+
}
10+
11+
.instruction {
12+
color: var(--dx-texteditor-color-label);
13+
}
14+
15+
.textarea-container {
16+
display: flex;
17+
flex-direction: column;
18+
gap: 16px;
19+
}
20+
21+
.dx-layout-manager .dx-field-item.dx-last-row {
22+
padding-top: 4px;
23+
}
24+
25+
.dx-toast-info .dx-toast-icon {
26+
display: none;
27+
}
28+
29+
.buttons-group {
30+
display: flex;
31+
width: 100%;
32+
justify-content: end;
33+
}
34+
35+
.buttons-group .dx-item-content {
36+
gap: 8px;
37+
}
38+
39+
.buttons-group .dx-field-item:not(.dx-first-col),
40+
.buttons-group .dx-field-item:not(.dx-last-col) {
41+
padding: 0;
42+
}
43+
44+
.buttons-group .dx-item {
45+
flex: unset!important;
46+
}

0 commit comments

Comments
 (0)