Skip to content

Commit 37ce52b

Browse files
committed
fix: css issues with trust list
1 parent 3265ec2 commit 37ce52b

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/components/trust/TrustList.vue

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</select>
3939
</div>
4040
</div>
41-
<div class="trust-section split-column">
41+
<div class="trust-section split-column align-bottom">
4242
<div>
4343
<label v-if="!admin" for="maxdepth">Trust Depth (max 4): </label>
4444
<input v-if="!admin" id="maxdepth" name="maxdepth" placeholder="Trust Depth (max 4)" type="number" min="0" max="4" v-model="maxDepth" />
@@ -142,7 +142,7 @@ export default {
142142
</script>
143143

144144
<style scoped lang="scss">
145-
.trust-section { margin-bottom: .5rem; }
145+
.trust-section { margin-bottom: 1rem; }
146146
.split-column {
147147
display: grid;
148148
grid-template-columns: 1fr 1fr;
@@ -155,4 +155,12 @@ export default {
155155
.trust-button {
156156
margin-top: 1rem;
157157
}
158+
.align-bottom {
159+
align-items: flex-end;
160+
justify-content: flex-end;
161+
input {
162+
margin-bottom: 0;
163+
}
164+
}
165+
.trust-select { margin-bottom: 0; }
158166
</style>

0 commit comments

Comments
 (0)