Benjamin Roth authored on16/03/2023 20:22:35
Showing1 changed files
1 |
1 |
new file mode 100644
|
... |
... |
@@ -0,0 +1,19 @@
|
|
1 |
+.form-summary {
|
|
2 |
+ div {
|
|
3 |
+ display: inline-block;
|
|
4 |
+
|
|
5 |
+ &.label {
|
|
6 |
+ display: none;
|
|
7 |
+ }
|
|
8 |
+
|
|
9 |
+ &:not(:last-child) {
|
|
10 |
+ &:after {
|
|
11 |
+ content: "|";
|
|
12 |
+ display: inline-block;
|
|
13 |
+ margin-left: 5px;
|
|
14 |
+ }
|
|
15 |
+ }
|
|
16 |
+ }
|
|
17 |
+}
|
|
18 |
+
|
|
19 |
+
|