feat: modernize PodMan frontend command center

This commit is contained in:
Yahya Alhinai
2026-06-28 00:28:04 +00:00
parent 549895292c
commit 80cc89072f
6 changed files with 524 additions and 170 deletions
+47 -3
View File
@@ -1,16 +1,60 @@
@import 'tailwindcss';
:root {
color-scheme: dark;
color-scheme: light;
}
body {
margin: 0;
background: #0b0f17;
color: #e7eaf0;
background: #f5f5f7;
color: #0f172a;
font-family:
ui-sans-serif,
system-ui,
-apple-system,
sans-serif;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
button,
input {
font: inherit;
}
button {
cursor: pointer;
}
button:disabled {
cursor: not-allowed;
}
button:focus-visible,
input:focus-visible {
outline: 2px solid rgb(37 99 235 / 0.7);
outline-offset: 2px;
}
::selection {
background: rgb(37 99 235 / 0.18);
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #f5f5f7;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border: 2px solid #f5f5f7;
border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}