style: remove padding for forms in TableContainer elements

- Added CSS rules to remove top padding for the first form inside TableContainer elements, improving layout consistency.
This commit is contained in:
Zack Spear
2025-05-29 10:01:05 -07:00
parent f4e7dfb69b
commit 42b2c54b9b

View File

@@ -1358,6 +1358,13 @@ a.list {
padding-top: 1rem;
}
/* Remove padding for forms inside TableContainer elements */
.TableContainer form:first-of-type,
.TableContainer--widest form:first-of-type,
.TableContainer--no-min-width form:first-of-type {
padding-top: 0;
}
.shade form {
padding-top: 0;
}