diff options
author | nod_ <nod_@598310.no-reply.drupal.org> | 2025-04-16 13:22:07 +0200 |
---|---|---|
committer | nod_ <nod_@598310.no-reply.drupal.org> | 2025-04-16 13:22:07 +0200 |
commit | c239b2eb178e3ca1c3d88e23e801f41abc5eaacb (patch) | |
tree | b01344b07977cc5015b231fcf804d70b792b22f8 /core | |
parent | 0971f357ec2791ec3cddb9ff0bc2a65ec9925613 (diff) | |
download | drupal-c239b2eb178e3ca1c3d88e23e801f41abc5eaacb.tar.gz drupal-c239b2eb178e3ca1c3d88e23e801f41abc5eaacb.zip |
Issue #3490443 by saurav-drupal-dev, ahsannazir, nod_, jvbrian, djsagar, danrod, anjaliprasannan, divyansh.gupta: Input and filter alignment issue on the comments tab
Diffstat (limited to 'core')
-rw-r--r-- | core/themes/olivero/css/components/form.css | 5 | ||||
-rw-r--r-- | core/themes/olivero/css/components/form.pcss.css | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/core/themes/olivero/css/components/form.css b/core/themes/olivero/css/components/form.css index 5f867589880..5ed2b02138a 100644 --- a/core/themes/olivero/css/components/form.css +++ b/core/themes/olivero/css/components/form.css @@ -156,7 +156,10 @@ tr .form-item, margin-block: var(--sp0-5); } -.form-actions .button, +.form-actions .button { + margin-block: 0; +} + .form-actions .action-link { margin-block: var(--sp0-5); } diff --git a/core/themes/olivero/css/components/form.pcss.css b/core/themes/olivero/css/components/form.pcss.css index 09628fbfd89..d90ddf74247 100644 --- a/core/themes/olivero/css/components/form.pcss.css +++ b/core/themes/olivero/css/components/form.pcss.css @@ -137,7 +137,10 @@ tr .form-item, margin-block: var(--sp0-5); } -.form-actions .button, +.form-actions .button { + margin-block: 0; +} + .form-actions .action-link { margin-block: var(--sp0-5); } |