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:
@@ -545,7 +545,7 @@ const sleep = (ms) => new Promise(resolve => setTimeout(resolve, ms))
|
||||
width: 100%;
|
||||
padding: 8px 12px;
|
||||
border: 1px solid var(--vp-c-divider);
|
||||
border-radius: 8px;
|
||||
border-radius: 6px;
|
||||
font-size: 13px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
@@ -580,7 +580,7 @@ const sleep = (ms) => new Promise(resolve => setTimeout(resolve, ms))
|
||||
.nav-btn {
|
||||
padding: 8px 16px;
|
||||
border: 2px solid var(--vp-c-divider);
|
||||
border-radius: 8px;
|
||||
border-radius: 6px;
|
||||
background: white;
|
||||
cursor: pointer;
|
||||
font-size: 13px;
|
||||
@@ -607,7 +607,7 @@ const sleep = (ms) => new Promise(resolve => setTimeout(resolve, ms))
|
||||
.status-indicator {
|
||||
text-align: center;
|
||||
padding: 12px;
|
||||
border-radius: 8px;
|
||||
border-radius: 6px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
@@ -621,14 +621,14 @@ const sleep = (ms) => new Promise(resolve => setTimeout(resolve, ms))
|
||||
background: #fff3e0;
|
||||
color: #e65100;
|
||||
padding: 8px 16px;
|
||||
border-radius: 8px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.status-text.spa {
|
||||
background: #e3f2fd;
|
||||
color: #1565c0;
|
||||
padding: 8px 16px;
|
||||
border-radius: 8px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.status-icon {
|
||||
|
||||
Reference in New Issue
Block a user