asdasd
All checks were successful
Deploy / deploy-staging (push) Successful in 25s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-06-25 00:17:31 +02:00
parent 46111d8988
commit ac2d95fc56
140 changed files with 1168 additions and 1984 deletions

View File

@@ -0,0 +1,206 @@
#fx-rates-app {
height: 100%;
}
#fx-rates-app .fx-shell {
height: 100%;
}
#fx-rates-app .fx-stack {
display: grid;
gap: 18px;
}
#fx-rates-app .fx-grid,
#fx-rates-app .fx-cards,
#fx-rates-app .fx-table-grid {
display: grid;
gap: 18px;
}
#fx-rates-app .fx-grid {
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
#fx-rates-app .fx-cards {
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
#fx-rates-app .fx-table-grid {
grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}
#fx-rates-app .fx-card,
#fx-rates-app .fx-panel {
padding: 22px;
border-radius: 20px;
background: rgba(255, 255, 255, 0.9);
border: 1px solid rgba(148, 163, 184, 0.2);
box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}
#fx-rates-app .fx-card h3,
#fx-rates-app .fx-panel h3,
#fx-rates-app .fx-panel h4 {
margin: 0 0 10px;
}
#fx-rates-app .fx-copy,
#fx-rates-app .fx-meta,
#fx-rates-app .fx-label,
#fx-rates-app .fx-note {
margin: 0;
color: #475569;
line-height: 1.5;
}
#fx-rates-app .fx-kicker {
margin: 0 0 10px;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.18em;
color: #4338ca;
font-weight: 700;
}
#fx-rates-app .fx-stat-value {
font-size: 1.45rem;
font-weight: 700;
color: #0f172a;
}
#fx-rates-app .fx-inline-actions,
#fx-rates-app .fx-form-actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
align-items: center;
}
#fx-rates-app .fx-button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 42px;
padding: 0 18px;
border-radius: 999px;
border: 1px solid rgba(79, 70, 229, 0.18);
background: linear-gradient(135deg, #4f46e5, #2563eb);
color: #ffffff;
font: inherit;
font-weight: 600;
cursor: pointer;
}
#fx-rates-app .fx-button:disabled {
opacity: 0.6;
cursor: not-allowed;
}
#fx-rates-app .fx-button--ghost {
background: rgba(255, 255, 255, 0.88);
color: #1e1b4b;
}
#fx-rates-app .fx-message {
min-height: 1.5rem;
color: #1e293b;
}
#fx-rates-app .fx-message.is-error {
color: #b91c1c;
}
#fx-rates-app .fx-message.is-success {
color: #0f766e;
}
#fx-rates-app .fx-form-grid {
display: grid;
gap: 14px;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
#fx-rates-app .fx-field {
display: grid;
gap: 8px;
}
#fx-rates-app .fx-field label {
font-size: 13px;
color: #475569;
font-weight: 600;
}
#fx-rates-app .fx-input,
#fx-rates-app .fx-select {
width: 100%;
min-height: 44px;
padding: 0 14px;
border-radius: 14px;
border: 1px solid rgba(148, 163, 184, 0.3);
background: #ffffff;
color: #0f172a;
font: inherit;
}
#fx-rates-app .fx-input:focus,
#fx-rates-app .fx-select:focus {
outline: none;
border-color: rgba(79, 70, 229, 0.5);
box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}
#fx-rates-app .fx-token-row {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
#fx-rates-app .fx-token {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
border-radius: 999px;
background: rgba(79, 70, 229, 0.08);
color: #312e81;
border: 1px solid rgba(79, 70, 229, 0.14);
font-size: 14px;
}
#fx-rates-app .fx-table-wrap {
overflow: auto;
}
#fx-rates-app .fx-table {
width: 100%;
border-collapse: collapse;
}
#fx-rates-app .fx-table th,
#fx-rates-app .fx-table td {
padding: 12px 10px;
text-align: left;
border-bottom: 1px solid rgba(148, 163, 184, 0.2);
vertical-align: top;
}
#fx-rates-app .fx-table th {
color: #475569;
font-size: 13px;
}
#fx-rates-app .fx-widget-note {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
flex-wrap: wrap;
}
@media (max-width: 1100px) {
#fx-rates-app .fx-table-grid {
grid-template-columns: 1fr;
}
}