Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/assets/design-system.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
--color-info-600: #2563eb;
--color-info-700: #1e40af;

/* Border Radius */
/* Border Radius (scale: 2, 4, 6, 8, 12) */
--radius-xs: 2px;
--radius-sm: 4px;
--radius-md: 6px;
Expand Down Expand Up @@ -119,7 +119,7 @@
align-items: center;
gap: var(--space-2);
padding: var(--space-2) var(--space-4);
border-radius: var(--radius-md);
border-radius: var(--radius-sm);
font-weight: var(--font-medium);
font-size: var(--text-md);
cursor: pointer;
Expand Down Expand Up @@ -178,7 +178,7 @@
.form-input {
padding: var(--space-2) var(--space-3);
border: 1px solid var(--color-gray-200);
border-radius: var(--radius-md);
border-radius: var(--radius-sm);
font-size: var(--text-md);
transition: all var(--transition-base);
}
Expand All @@ -192,7 +192,7 @@
/* Card */
.card {
background: white;
border-radius: var(--radius-lg);
border-radius: var(--radius-md);
border: 1px solid var(--color-gray-200);
overflow: hidden;
transition: all var(--transition-base);
Expand Down Expand Up @@ -364,7 +364,7 @@
align-items: center;
padding: var(--space-12);
background: white;
border-radius: var(--radius-lg);
border-radius: var(--radius-md);
text-align: center;
gap: var(--space-4);
}
Expand Down
6 changes: 3 additions & 3 deletions src/components/ConfirmModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const confirmButtonClass = computed(() => {

.confirm-modal {
background: white;
border-radius: var(--radius-lg);
border-radius: var(--radius-md);
box-shadow: var(--shadow-xl);
width: 420px;
max-width: 90vw;
Expand Down Expand Up @@ -162,7 +162,7 @@ const confirmButtonClass = computed(() => {
padding: var(--space-2) var(--space-3);
background: var(--color-warning-50);
color: var(--color-warning-700);
border-radius: var(--radius-md);
border-radius: var(--radius-sm);
font-size: var(--text-sm);
}

Expand All @@ -179,7 +179,7 @@ const confirmButtonClass = computed(() => {
align-items: center;
gap: var(--space-2);
padding: var(--space-2) var(--space-4);
border-radius: var(--radius-md);
border-radius: var(--radius-sm);
font-weight: var(--font-medium);
font-size: var(--text-md);
cursor: pointer;
Expand Down
2 changes: 1 addition & 1 deletion src/components/ContainerTerminal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ defineExpose({
height: 100%;
min-height: 400px;
background: #1a1b26;
border-radius: 8px;
border-radius: var(--radius-sm);
overflow: hidden;
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/DeploymentCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ defineEmits<{
<style scoped>
.deployment-card {
background: white;
border-radius: var(--radius-md);
border-radius: var(--radius-sm);
overflow: hidden;
display: flex;
flex-direction: column;
Expand Down
10 changes: 5 additions & 5 deletions src/components/DeploymentTrafficStats.vue
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ onMounted(() => {
<style scoped>
.deployment-traffic {
background: white;
border-radius: 12px;
border-radius: var(--radius-sm);
border: 1px solid #e5e7eb;
padding: 1rem;
}
Expand Down Expand Up @@ -204,7 +204,7 @@ onMounted(() => {
.time-select {
padding: 0.375rem 0.5rem;
border: 1px solid #e5e7eb;
border-radius: 6px;
border-radius: var(--radius-md);
font-size: 0.75rem;
color: #374151;
background: white;
Expand Down Expand Up @@ -258,7 +258,7 @@ onMounted(() => {
.status-distribution {
display: flex;
height: 8px;
border-radius: 4px;
border-radius: var(--radius-sm);
overflow: hidden;
background: #f3f4f6;
}
Expand Down Expand Up @@ -345,7 +345,7 @@ onMounted(() => {
align-items: center;
padding: 0.375rem 0.5rem;
background: #f9fafb;
border-radius: 4px;
border-radius: var(--radius-sm);
}

.path-name {
Expand Down Expand Up @@ -383,7 +383,7 @@ onMounted(() => {
padding: 0.5rem;
font-size: 0.875rem;
font-weight: 500;
border-radius: 6px;
border-radius: var(--radius-md);
border: none;
cursor: pointer;
transition: all 0.2s;
Expand Down
10 changes: 5 additions & 5 deletions src/components/FileBrowser.vue
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@ onMounted(() => {

.modal-container {
background: white;
border-radius: var(--radius-lg);
border-radius: var(--radius-md);
box-shadow: var(--shadow-xl);
max-width: 90vw;
animation: slideIn 0.2s ease;
Expand Down Expand Up @@ -1018,7 +1018,7 @@ onMounted(() => {
width: 100%;
padding: var(--space-2) var(--space-3);
border: 1px solid var(--color-gray-200);
border-radius: var(--radius-md);
border-radius: var(--radius-sm);
font-size: var(--text-md);
}

Expand All @@ -1033,7 +1033,7 @@ onMounted(() => {
align-items: center;
gap: var(--space-2);
padding: var(--space-2) var(--space-4);
border-radius: var(--radius-md);
border-radius: var(--radius-sm);
font-weight: var(--font-medium);
font-size: var(--text-md);
cursor: pointer;
Expand Down Expand Up @@ -1081,7 +1081,7 @@ onMounted(() => {
.view-mode-toggle {
display: flex;
border: 1px solid var(--color-gray-200);
border-radius: var(--radius-md);
border-radius: var(--radius-sm);
overflow: hidden;
margin-left: var(--space-2);
}
Expand Down Expand Up @@ -1126,7 +1126,7 @@ onMounted(() => {
align-items: center;
padding: var(--space-3);
border: 1px solid var(--color-gray-200);
border-radius: var(--radius-md);
border-radius: var(--radius-sm);
cursor: pointer;
transition: all var(--transition-base);
position: relative;
Expand Down
2 changes: 1 addition & 1 deletion src/components/LogViewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ onUnmounted(() => {

.terminal-container :deep(.xterm-viewport::-webkit-scrollbar-thumb) {
background: #2a2e3d;
border-radius: 4px;
border-radius: var(--radius-sm);
}

.terminal-container :deep(.xterm-viewport::-webkit-scrollbar-thumb:hover) {
Expand Down
Loading