style: update border-radius and padding values across components

- standardize border-radius from 8px to 6px for consistent styling
- adjust padding values from 1rem to 0.75rem for better visual hierarchy
- remove redundant overflow-y properties for cleaner code
This commit is contained in:
sanbuphy
2026-02-14 20:23:34 +08:00
parent 81e4284b87
commit d35211071a
373 changed files with 3441 additions and 5629 deletions
@@ -285,7 +285,7 @@ const setScenario = (key) => {
.tabs {
display: flex;
background: var(--vp-c-bg-mute);
border-radius: 8px;
border-radius: 6px;
padding: 4px;
margin-bottom: 16px;
gap: 4px;
@@ -359,7 +359,7 @@ const setScenario = (key) => {
/* VS Code Style */
.vscode .editor-window {
background: #1e1e1e;
border-radius: 8px;
border-radius: 6px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
border: 1px solid #333;
@@ -403,7 +403,7 @@ const setScenario = (key) => {
.comp-box {
background: var(--vp-c-bg);
border: 2px solid var(--vp-c-divider);
border-radius: 8px;
border-radius: 6px;
padding: 12px;
min-height: 60px;
display: flex;
@@ -510,7 +510,7 @@ const setScenario = (key) => {
/* Terminal */
.terminal-box {
background: #1e1e1e;
border-radius: 8px;
border-radius: 6px;
overflow: hidden;
font-family: 'Consolas', monospace;
border: 1px solid #333;