@asd20/ui 3.2.441 → 3.2.444
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
>
|
|
23
23
|
<asd20-icon v-if="icon" :name="icon" size="md" />
|
|
24
24
|
{{ title }}
|
|
25
|
-
<span class="version" v-if="version" v-html="version"></span>
|
|
25
|
+
<span class="version" v-if="version && !zoomed" v-html="version"></span>
|
|
26
26
|
</div>
|
|
27
27
|
<asd20-district-logo link="https://www.asd20.org" />
|
|
28
28
|
</h1>
|
|
@@ -90,7 +90,7 @@ export default {
|
|
|
90
90
|
|
|
91
91
|
h1 {
|
|
92
92
|
margin: 0;
|
|
93
|
-
font-size: 1.
|
|
93
|
+
font-size: 1.5rem;
|
|
94
94
|
color: var(--color__on-primary);
|
|
95
95
|
flex-grow: 1;
|
|
96
96
|
width: 100%;
|
|
@@ -103,6 +103,9 @@ export default {
|
|
|
103
103
|
--line-color: white;
|
|
104
104
|
}
|
|
105
105
|
.version {
|
|
106
|
+
position: absolute;
|
|
107
|
+
top: space(3);
|
|
108
|
+
right: space(-0.45);
|
|
106
109
|
display: block;
|
|
107
110
|
font-size: 0.65rem;
|
|
108
111
|
color: lightgray;
|
|
@@ -121,7 +124,7 @@ export default {
|
|
|
121
124
|
.asd20-district-logo {
|
|
122
125
|
margin-left: auto;
|
|
123
126
|
margin-right: space(1);
|
|
124
|
-
height: space(1);
|
|
127
|
+
height: space(1.5);
|
|
125
128
|
padding: space(0.5) 0;
|
|
126
129
|
--fill-one: #fff;
|
|
127
130
|
--fill-two: #ccc;
|
|
@@ -146,17 +149,20 @@ export default {
|
|
|
146
149
|
.asd20-button.asd20-button--transparent {
|
|
147
150
|
margin-right: 0;
|
|
148
151
|
}
|
|
149
|
-
.
|
|
150
|
-
width: 100vw;
|
|
151
|
-
background: var(--
|
|
152
|
-
flex-grow: 1;
|
|
152
|
+
.back-button {
|
|
153
|
+
// width: 100vw;
|
|
154
|
+
background: var(--color__primary);
|
|
155
|
+
// flex-grow: 1;
|
|
153
156
|
margin: 0;
|
|
154
157
|
order: 0;
|
|
155
158
|
font-size: 0.875rem !important;
|
|
156
159
|
font-weight: bold;
|
|
157
160
|
padding: space(0.25) space(0.25) space(0.25) space(0.5);
|
|
158
|
-
color: var(--
|
|
161
|
+
color: var(--color__on-primary);
|
|
159
162
|
// margin-bottom: space(-0.5);
|
|
163
|
+
&::v-deep .asd20-icon {
|
|
164
|
+
--line-color: var(--color__on-primary) !important;
|
|
165
|
+
}
|
|
160
166
|
}
|
|
161
167
|
}
|
|
162
168
|
|