Add server components
build-winui / winui (push) Has been cancelled

This commit is contained in:
QWQLwToo
2026-06-26 13:28:09 +08:00
parent 7ecc6a8923
commit 079ee4eaeb
168 changed files with 37475 additions and 0 deletions
+851
View File
@@ -0,0 +1,851 @@
/* 简约风格的后台管理样式 */
:root {
--primary: #0071e3;
--success: #34c759;
--danger: #ef4444;
--warning: #ff9500;
--bg: #f5f5f7;
--card: #ffffff;
--text: #1d1d1f;
--text-secondary: #86868b;
--border: rgba(0, 0, 0, 0.1);
--shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
--shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
}
/* 认证页面 */
.auth-container {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 1rem;
}
.auth-box {
background: var(--card);
border-radius: 16px;
padding: 2.5rem;
width: 100%;
max-width: 420px;
box-shadow: var(--shadow-hover);
animation: fadeInUp 0.4s ease-out;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.auth-header {
text-align: center;
margin-bottom: 2rem;
}
.auth-logo {
width: 64px;
height: 64px;
margin: 0 auto 1rem;
color: var(--primary);
}
.auth-header h1 {
font-size: 1.75rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.auth-header p {
color: var(--text-secondary);
font-size: 0.9rem;
}
.auth-form {
margin-top: 1.5rem;
}
.form-group {
margin-bottom: 1.25rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
font-size: 0.9rem;
color: var(--text);
}
.form-group input,
.form-group select {
width: 100%;
padding: 0.75rem 1rem;
border: 1px solid var(--border);
border-radius: 8px;
font-size: 1rem;
transition: all 0.2s;
background: var(--card);
}
.form-group input:focus,
.form-group select:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}
.form-group small {
display: block;
margin-top: 0.25rem;
color: var(--text-secondary);
font-size: 0.8rem;
}
.password-strength {
margin-top: 0.5rem;
height: 3px;
background: #e0e0e0;
border-radius: 2px;
overflow: hidden;
transition: all 0.3s;
}
.password-strength::after {
content: '';
display: block;
height: 100%;
width: 0%;
background: var(--danger);
transition: width 0.3s, background 0.3s;
}
.password-strength.weak::after {
width: 33%;
background: var(--danger);
}
.password-strength.medium::after {
width: 66%;
background: var(--warning);
}
.password-strength.strong::after {
width: 100%;
background: var(--success);
}
.btn {
padding: 0.75rem 1.5rem;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
display: inline-flex;
align-items: center;
gap: 0.5rem;
text-decoration: none;
}
.btn-primary {
background: var(--primary);
color: white;
width: 100%;
justify-content: center;
}
.btn-primary:hover {
background: #0051a5;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}
.btn-secondary {
background: #e0e0e0;
color: var(--text);
}
.btn-secondary:hover {
background: #d0d0d0;
}
.btn-success {
background: var(--success);
color: white;
}
.btn-danger {
background: var(--danger);
color: white;
}
.btn-icon {
padding: 0.5rem;
background: transparent;
border: none;
color: var(--text-secondary);
cursor: pointer;
border-radius: 6px;
transition: all 0.2s;
}
.btn-icon:hover {
background: var(--bg);
color: var(--text);
}
.error-message {
margin-top: 1rem;
padding: 0.75rem 1rem;
background: #fee;
color: var(--danger);
border-radius: 8px;
display: none;
animation: fadeIn 0.3s;
}
.error-message.show {
display: block;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.auth-footer {
margin-top: 1.5rem;
text-align: center;
}
.auth-link {
color: var(--primary);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.2s;
}
.auth-link:hover {
color: #0051a5;
text-decoration: underline;
}
/* 管理界面 */
.admin-container {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.admin-header {
background: var(--card);
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid var(--border);
box-shadow: var(--shadow);
}
.header-left {
display: flex;
align-items: center;
gap: 1rem;
}
.back-link {
display: flex;
align-items: center;
color: var(--text-secondary);
text-decoration: none;
padding: 0.5rem;
border-radius: 6px;
transition: all 0.2s;
}
.back-link:hover {
background: var(--bg);
color: var(--text);
}
.admin-header h1 {
font-size: 1.5rem;
font-weight: 600;
}
.header-right {
display: flex;
align-items: center;
gap: 1rem;
}
#current-user {
color: var(--text-secondary);
font-size: 0.9rem;
}
.admin-layout {
display: flex;
flex: 1;
}
.admin-sidebar {
width: 260px;
background: var(--card);
border-right: 1px solid var(--border);
padding: 1rem 0;
}
.sidebar-nav {
display: flex;
flex-direction: column;
}
.nav-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1.5rem;
color: var(--text);
text-decoration: none;
transition: all 0.2s;
border-left: 3px solid transparent;
}
.nav-item:hover {
background: var(--bg);
color: var(--primary);
}
.nav-item.active {
background: rgba(0, 113, 227, 0.08);
color: var(--primary);
border-left-color: var(--primary);
font-weight: 500;
}
.admin-content {
flex: 1;
padding: 2rem;
overflow-y: auto;
}
.page {
display: none;
animation: fadeIn 0.3s;
}
.page.active {
display: block;
}
.page-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
}
.page-header h2 {
font-size: 1.75rem;
font-weight: 600;
}
.button-group {
display: flex;
gap: 0.75rem;
}
/* 统计卡片 */
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1.5rem;
margin-bottom: 2rem;
}
.stat-card {
background: var(--card);
border-radius: 12px;
padding: 1.5rem;
display: flex;
align-items: center;
gap: 1rem;
box-shadow: var(--shadow);
transition: all 0.2s;
}
.stat-card:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-hover);
}
.stat-icon {
font-size: 2.5rem;
}
.stat-info {
flex: 1;
}
.stat-value {
font-size: 2rem;
font-weight: 600;
color: var(--primary);
line-height: 1.2;
}
.stat-label {
color: var(--text-secondary);
font-size: 0.9rem;
margin-top: 0.25rem;
}
/* 表格 */
.table-container {
background: var(--card);
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow);
}
.data-table {
width: 100%;
border-collapse: collapse;
}
.data-table thead {
background: var(--bg);
}
.data-table th {
padding: 1rem;
text-align: left;
font-weight: 600;
font-size: 0.9rem;
color: var(--text-secondary);
}
.data-table td {
padding: 1rem;
border-top: 1px solid var(--border);
}
.data-table tbody tr {
transition: background 0.2s;
}
.data-table tbody tr:hover {
background: var(--bg);
}
.badge {
display: inline-block;
padding: 0.25rem 0.5rem;
border-radius: 4px;
font-size: 0.8rem;
font-weight: 500;
background: var(--bg);
color: var(--text);
}
.empty-state {
padding: 2rem;
text-align: center;
color: var(--text-secondary);
}
/* 模态框 */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 1000;
align-items: center;
justify-content: center;
animation: fadeIn 0.2s;
}
.modal.show {
display: flex;
}
.modal-content {
background: var(--card);
border-radius: 12px;
width: 90%;
max-width: 600px;
max-height: 90vh;
overflow-y: auto;
box-shadow: var(--shadow-hover);
animation: fadeInUp 0.3s;
}
.modal-header {
padding: 1.5rem;
border-bottom: 1px solid var(--border);
display: flex;
justify-content: space-between;
align-items: center;
}
.modal-header h3 {
font-size: 1.25rem;
font-weight: 600;
}
.modal-close {
background: none;
border: none;
font-size: 1.5rem;
cursor: pointer;
color: var(--text-secondary);
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
transition: all 0.2s;
}
.modal-close:hover {
background: var(--bg);
color: var(--text);
}
.modal-body {
padding: 1.5rem;
}
.modal-footer {
padding: 1.5rem;
border-top: 1px solid var(--border);
display: flex;
justify-content: flex-end;
gap: 1rem;
}
/* 文件浏览器 */
.file-browser {
background: var(--card);
border-radius: 12px;
padding: 1rem;
box-shadow: var(--shadow);
}
.file-item {
padding: 1rem;
border-bottom: 1px solid var(--border);
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.2s;
}
.file-item:last-child {
border-bottom: none;
}
.file-item:hover {
background: var(--bg);
}
/* 编辑器 */
.editor-container {
background: var(--card);
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow);
}
.code-editor {
width: 100%;
min-height: 500px;
padding: 1rem;
border: 1px solid var(--border);
border-radius: 8px;
font-family: 'Courier New', monospace;
font-size: 0.9rem;
resize: vertical;
background: var(--card);
color: var(--text);
}
.code-editor:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}
.config-controls {
display: flex;
gap: 0.75rem;
margin-bottom: 1rem;
align-items: center;
}
.config-controls select {
flex: 1;
padding: 0.75rem;
border: 1px solid var(--border);
border-radius: 8px;
font-size: 1rem;
}
/* 日志 */
.logs-container {
background: var(--card);
border-radius: 12px;
padding: 1rem;
max-height: 600px;
overflow-y: auto;
box-shadow: var(--shadow);
}
.logs-content {
font-family: 'Courier New', monospace;
font-size: 0.85rem;
}
.log-entry {
padding: 0.75rem;
border-bottom: 1px solid var(--border);
display: flex;
gap: 1rem;
transition: background 0.2s;
}
.log-entry:last-child {
border-bottom: none;
}
.log-entry:hover {
background: var(--bg);
}
.log-time {
color: var(--text-secondary);
min-width: 150px;
}
.log-level {
font-weight: 600;
min-width: 60px;
}
.log-level.INFO {
color: var(--success);
}
.log-level.WARN {
color: var(--warning);
}
.log-level.ERROR {
color: var(--danger);
}
.log-message {
flex: 1;
}
/* 设置页面 */
.settings-container {
max-width: 1000px;
}
.settings-section {
margin-bottom: 2rem;
}
.section-header {
margin-bottom: 1rem;
}
.section-header h2 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 0.25rem;
}
.section-description {
color: var(--text-secondary);
font-size: 0.9rem;
}
.settings-card {
background: var(--card);
border-radius: 12px;
padding: 1.5rem;
box-shadow: var(--shadow);
}
.database-info,
.system-stats,
.os-info {
display: grid;
gap: 1rem;
}
.info-item,
.stat-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.75rem 0;
border-bottom: 1px solid var(--border);
}
.info-item:last-child,
.stat-item:last-child {
border-bottom: none;
}
.info-label,
.stat-label {
color: var(--text-secondary);
font-size: 0.9rem;
}
.info-value,
.stat-value {
font-weight: 500;
color: var(--text);
}
.status-badge {
padding: 0.25rem 0.75rem;
border-radius: 12px;
font-size: 0.85rem;
font-weight: 500;
}
.status-connected {
background: rgba(52, 199, 89, 0.1);
color: var(--success);
}
.database-password,
.database-convert {
margin-top: 1.5rem;
padding-top: 1.5rem;
border-top: 1px solid var(--border);
}
.password-warning,
.convert-warning {
background: #fff3cd;
border: 1px solid var(--warning);
border-radius: 8px;
padding: 1rem;
margin-bottom: 1rem;
color: #856404;
font-size: 0.9rem;
}
.password-form {
display: flex;
flex-direction: column;
gap: 1rem;
}
.password-form .form-group {
margin-bottom: 0;
}
#password-result,
#convert-result {
margin-top: 1rem;
padding: 1rem;
border-radius: 8px;
display: none;
}
#password-result.success,
#convert-result.success {
background: rgba(52, 199, 89, 0.1);
border: 1px solid var(--success);
color: var(--success);
display: block;
}
#password-result.error,
#convert-result.error {
background: rgba(239, 68, 68, 0.1);
border: 1px solid var(--danger);
color: var(--danger);
display: block;
}
.convert-form {
display: flex;
gap: 0.75rem;
align-items: center;
}
.convert-form select {
flex: 1;
padding: 0.75rem;
border: 1px solid var(--border);
border-radius: 8px;
font-size: 1rem;
}
/* 响应式 */
@media (max-width: 768px) {
.admin-layout {
flex-direction: column;
}
.admin-sidebar {
width: 100%;
border-right: none;
border-bottom: 1px solid var(--border);
}
.sidebar-nav {
flex-direction: row;
overflow-x: auto;
}
.nav-item {
white-space: nowrap;
}
.stats-grid {
grid-template-columns: 1fr;
}
.page-header {
flex-direction: column;
align-items: flex-start;
gap: 1rem;
}
}
+523
View File
@@ -0,0 +1,523 @@
:root {
--background: #fbf7ef;
--foreground: #1c1917;
--card: rgba(255, 255, 255, 0.9);
--card-foreground: #1c1917;
--popover: #ffffff;
--popover-foreground: #1c1917;
--primary: #5f6f45;
--primary-foreground: #ffffff;
--secondary: #f5f5f4;
--secondary-foreground: #1c1917;
--muted: #f5f5f4;
--muted-foreground: #57534e;
--accent: #b56e45;
--accent-foreground: #ffffff;
--destructive: #b91c1c;
--destructive-foreground: #ffffff;
--border: #d6d3d1;
--input: #d6d3d1;
--ring: #7a8a67;
--radius: 0.75rem;
--shadow: 0 18px 40px rgba(28, 25, 23, 0.08);
}
* {
box-sizing: border-box;
}
body.shad-app {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
"Hiragino Sans GB", "Microsoft YaHei", sans-serif;
color: var(--foreground);
background:
radial-gradient(circle at top left, rgba(181, 110, 69, 0.1), transparent 20rem),
radial-gradient(circle at top right, rgba(122, 138, 103, 0.1), transparent 20rem),
var(--background);
}
.site-header {
border-bottom: 1px solid rgba(214, 211, 209, 0.8);
padding: 34px 0 30px;
}
.header-inner {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 24px;
}
.header-inner h1 {
margin: 10px 0 0;
max-width: 760px;
font-size: clamp(2rem, 4vw, 3rem);
line-height: 1.08;
letter-spacing: 0;
}
.header-inner p {
margin: 14px 0 0;
max-width: 760px;
color: var(--muted-foreground);
line-height: 1.8;
}
.header-actions {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
gap: 10px;
}
.eyebrow {
color: var(--primary);
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.summary-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 14px;
margin-bottom: 26px;
}
.summary-card {
border: 1px solid var(--border);
border-radius: var(--radius);
background: rgba(255, 255, 255, 0.72);
padding: 16px;
}
.summary-card span {
color: var(--muted-foreground);
font-size: 0.86rem;
}
.summary-card strong {
display: block;
margin-top: 6px;
font-size: 1.25rem;
}
.summary-card p {
margin: 8px 0 0;
color: var(--muted-foreground);
line-height: 1.6;
}
.section-title {
display: flex;
align-items: end;
justify-content: space-between;
gap: 16px;
margin-bottom: 16px;
}
.section-title h2 {
margin: 6px 0 0;
}
.section-title p {
margin: 0;
color: var(--muted-foreground);
}
a {
color: inherit;
text-decoration: none;
}
button {
font: inherit;
}
code {
border: 1px solid var(--border);
border-radius: 0.375rem;
padding: 0.125rem 0.35rem;
background: var(--muted);
font-family: "Cascadia Code", "JetBrains Mono", monospace;
}
.shad-container {
width: min(1180px, calc(100% - 32px));
margin: 0 auto;
}
.shad-hero {
border-bottom: 1px solid rgba(214, 211, 209, 0.8);
}
.shad-hero__inner {
min-height: 280px;
display: flex;
align-items: center;
padding: 48px 0 40px;
}
.shad-hero__copy {
max-width: 780px;
}
.shad-hero__title {
margin: 16px 0 0;
font-size: clamp(2rem, 4vw, 3.25rem);
line-height: 1.05;
letter-spacing: 0;
}
.shad-hero__text {
margin: 16px 0 0;
color: var(--muted-foreground);
line-height: 1.8;
}
.shad-main {
padding: 28px 0 56px;
}
.shad-section__head {
margin-bottom: 18px;
}
.shad-section__head h2 {
margin: 0;
font-size: 1.35rem;
}
.shad-section__head p {
margin: 6px 0 0;
color: var(--muted-foreground);
}
.shad-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 16px;
}
.shad-card,
.shad-dialog__content {
border: 1px solid var(--border);
border-radius: var(--radius);
background: var(--card);
color: var(--card-foreground);
box-shadow: var(--shadow);
backdrop-filter: blur(12px);
}
.shad-card {
padding: 20px;
}
.shad-card--state {
padding: 24px;
}
.shad-card--danger {
border-color: rgba(185, 28, 28, 0.24);
}
.shad-card--state h3,
.shad-product__title h3 {
margin: 0;
}
.shad-card--state p,
.shad-product__title p,
.shad-history__item p {
margin: 8px 0 0;
color: var(--muted-foreground);
line-height: 1.7;
}
.shad-product {
display: flex;
flex-direction: column;
gap: 16px;
}
.shad-product__head {
display: flex;
gap: 14px;
align-items: flex-start;
}
.shad-product__icon {
width: 52px;
height: 52px;
flex: 0 0 52px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 0.875rem;
background: rgba(22, 101, 52, 0.08);
color: var(--primary);
}
.shad-product__icon svg {
width: 24px;
height: 24px;
}
.shad-stack {
display: flex;
gap: 8px;
}
.shad-stack--row {
flex-direction: row;
}
.shad-stack--wrap {
flex-wrap: wrap;
}
.shad-badge {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 28px;
padding: 0 10px;
border-radius: 999px;
border: 1px solid transparent;
background: rgba(22, 101, 52, 0.1);
color: var(--primary);
font-size: 0.82rem;
white-space: nowrap;
}
.shad-badge--outline {
background: transparent;
border-color: var(--border);
color: var(--muted-foreground);
}
.shad-badge--muted {
background: var(--muted);
color: var(--muted-foreground);
}
.shad-badge--subtle {
background: rgba(217, 119, 6, 0.12);
color: #92400e;
}
.shad-panel {
border: 1px solid rgba(214, 211, 209, 0.8);
border-radius: calc(var(--radius) - 0.15rem);
padding: 16px;
background: linear-gradient(180deg, rgba(28, 25, 23, 0.02), rgba(28, 25, 23, 0.04));
}
.shad-panel__main {
display: flex;
align-items: end;
justify-content: space-between;
gap: 12px;
}
.shad-panel__main strong {
display: block;
margin-top: 4px;
font-size: 1.4rem;
color: var(--primary);
}
.shad-meta-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
margin-top: 14px;
}
.shad-meta {
display: flex;
flex-direction: column;
gap: 4px;
}
.shad-muted {
color: var(--muted-foreground);
font-size: 0.86rem;
}
.shad-truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.shad-actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.shad-button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 40px;
padding: 0 16px;
border-radius: calc(var(--radius) - 0.2rem);
border: 1px solid transparent;
cursor: pointer;
transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}
.shad-button:hover {
transform: translateY(-1px);
}
.shad-button--primary {
background: var(--primary);
color: var(--primary-foreground);
}
.shad-button--primary:hover {
background: #14532d;
}
.shad-button--secondary {
background: var(--secondary);
color: var(--secondary-foreground);
border-color: var(--border);
}
.shad-button--secondary:hover {
background: #ede9e7;
}
.shad-dialog {
position: fixed;
inset: 0;
display: none;
align-items: center;
justify-content: center;
padding: 16px;
}
.shad-dialog.is-open {
display: flex;
}
.shad-dialog__overlay {
position: absolute;
inset: 0;
background: rgba(28, 25, 23, 0.45);
}
.shad-dialog__content {
position: relative;
width: min(680px, 100%);
max-height: min(80vh, 720px);
overflow: hidden;
}
.shad-dialog__header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 18px 20px;
border-bottom: 1px solid var(--border);
}
.shad-dialog__header h3 {
margin: 0;
}
.shad-dialog__body {
padding: 8px 20px 20px;
overflow: auto;
}
.shad-icon-button {
width: 36px;
height: 36px;
border-radius: 999px;
border: 1px solid var(--border);
background: var(--popover);
color: var(--popover-foreground);
cursor: pointer;
}
.shad-history {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
}
.shad-history__item {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 14px 0;
border-bottom: 1px solid rgba(214, 211, 209, 0.8);
}
.shad-history__item:last-child {
border-bottom: 0;
}
.shad-footer {
border-top: 1px solid rgba(214, 211, 209, 0.8);
background: rgba(255, 255, 255, 0.7);
}
.shad-footer__inner {
display: flex;
justify-content: space-between;
gap: 12px;
padding: 18px 0 24px;
color: var(--muted-foreground);
font-size: 0.9rem;
}
@media (max-width: 760px) {
.header-inner,
.section-title {
align-items: flex-start;
flex-direction: column;
}
.header-actions,
.summary-grid {
width: 100%;
}
.summary-grid {
grid-template-columns: 1fr;
}
.shad-hero__inner {
min-height: auto;
padding: 40px 0 32px;
}
.shad-meta-grid {
grid-template-columns: 1fr;
}
.shad-actions,
.shad-footer__inner,
.shad-panel__main,
.shad-history__item,
.shad-product__head {
flex-direction: column;
align-items: stretch;
}
.shad-button {
width: 100%;
}
}