diff options
author | Connor Shea <connor.james.shea@gmail.com> | 2022-11-10 18:55:20 -0700 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2022-11-12 13:55:43 +0100 |
commit | d525ae4bdd0325815b2b4937754bb4938f6d08c3 (patch) | |
tree | 2872fe574d404ae6284c427f94a1572cd3316f65 | |
parent | 0071582c6d425f7f8fdbef692906d7cc778fa35c (diff) |
[Glitch] Only remove padding when listing applications
Port cf4992c918459187962a9e2f389f9ccb4f1b825d to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
-rw-r--r-- | app/javascript/flavours/glitch/styles/forms.scss | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/styles/forms.scss b/app/javascript/flavours/glitch/styles/forms.scss index 8eecee4e9..01b7a11e9 100644 --- a/app/javascript/flavours/glitch/styles/forms.scss +++ b/app/javascript/flavours/glitch/styles/forms.scss @@ -1060,11 +1060,18 @@ code { &:last-child { border-bottom: 0; - padding-bottom: 0; } } } +// Only remove padding when listing applications, to prevent styling issues on +// the Authorization page. +.applications-list { + .permissions-list__item:last-child { + padding-bottom: 0; + } +} + .keywords-table { thead { th { |