fix: add padding to forms in .tab-content for improved layout

- Introduced padding-top styles for the first form and shade forms within .tab-content in default-base.css to enhance layout consistency.
- This change continues the effort to improve visual consistency across the plugin.
This commit is contained in:
Zack Spear
2025-05-23 15:16:01 -07:00
parent 1934bae349
commit a29621e8ab

View File

@@ -1362,6 +1362,14 @@ a.list {
.tab-content {
display: none;
form:first-of-type {
padding-top: 1rem;
}
.shade form {
padding-top: 0;
}
}
.Panels {