Merge pull request #3951 from h3poteto/iss-3940
refs #3940 Fix padding for separator lines between posts
This commit is contained in:
commit
062fef959c
|
@ -142,6 +142,10 @@ export default defineComponent({
|
|||
}
|
||||
}
|
||||
|
||||
.relationship {
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
|
||||
.relationship:focus {
|
||||
background-color: var(--theme-selected-background-color);
|
||||
outline: 0;
|
||||
|
|
|
@ -142,6 +142,10 @@ export default defineComponent({
|
|||
}
|
||||
}
|
||||
|
||||
.relationship {
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
|
||||
.relationship:focus {
|
||||
background-color: var(--theme-selected-background-color);
|
||||
outline: 0;
|
||||
|
|
|
@ -494,6 +494,10 @@ export default defineComponent({
|
|||
justify-content: center;
|
||||
}
|
||||
|
||||
.status {
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
|
||||
.status:focus {
|
||||
background-color: var(--theme-selected-background-color);
|
||||
outline: 0;
|
||||
|
|
|
@ -226,7 +226,7 @@
|
|||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
<div class="fill-line"></div>
|
||||
<div class="fill-line" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
@ -733,6 +733,7 @@ export default defineComponent({
|
|||
<style lang="scss" scoped>
|
||||
.status {
|
||||
background-color: var(--theme-background-color);
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
|
||||
.toot {
|
||||
|
|
Loading…
Reference in New Issue