fix: enhance layout consistency in default-base.css

- Added width: 100% and box-sizing: border-box to pre elements for improved layout handling.
- Updated box-sizing for dd elements to ensure consistent sizing across different contexts.
- This change continues the effort to enhance visual consistency across the plugin.
This commit is contained in:
Zack Spear
2025-05-22 12:42:08 -07:00
parent ba8042a517
commit 260c119679

View File

@@ -1476,6 +1476,8 @@ pre {
line-height: 1.8rem;
padding: 4px 6px;
overflow: auto;
width: 100%;
box-sizing: border-box;
}
iframe#progressFrame {
position: fixed;
@@ -1513,7 +1515,7 @@ dt {
dd {
margin: 0;
white-space: normal;
overflow-x: auto;
box-sizing: border-box;
p {
margin: 0 0 4px 0;