diff options
| author | Tusooa Zhu <tusooa@kazv.moe> | 2022-07-15 19:30:32 -0400 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2022-11-24 18:30:00 -0500 |
| commit | 54318d31fe7d9167a4b6e991db4fdaebac24a104 (patch) | |
| tree | 8278d2005a8914deeac5476ac6bf6d08b1afdbfc | |
| parent | f3d97cf917172735d9058ad4f308ea401832e7d6 (diff) | |
Fix announcement buttons style on narrow screens
| -rw-r--r-- | src/components/announcement/announcement.vue | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/announcement/announcement.vue b/src/components/announcement/announcement.vue index 823e496c..2753cf8e 100644 --- a/src/components/announcement/announcement.vue +++ b/src/components/announcement/announcement.vue @@ -124,10 +124,11 @@ .footer .actions { display: flex; flex-direction: row; - justify-content: space-around; + justify-content: space-evenly; .btn { - min-width: 10em; + flex: 1; + margin: 1em; } } } |
