Changeset View
Changeset View
Standalone View
Standalone View
apps/marlin-wallet/web/src/main.css
| Show First 20 Lines • Show All 282 Lines • ▼ Show 20 Lines | .title h1 { | ||||
| text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); | text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); | ||||
| display: flex; | display: flex; | ||||
| align-items: end; | align-items: end; | ||||
| margin-left: 10px; | margin-left: 10px; | ||||
| } | } | ||||
| .header-buttons { | .header-buttons { | ||||
| display: flex; | display: flex; | ||||
| align-items: center; | |||||
| gap: 4px; | |||||
| } | |||||
| .asset-picker-wrap { | |||||
| position: relative; | |||||
| } | |||||
| .asset-picker-btn { | |||||
| display: flex; | |||||
| align-items: center; | |||||
| justify-content: center; | |||||
| width: 36px; | |||||
| height: 36px; | |||||
| padding: 0; | |||||
| border: none; | |||||
| border-radius: 8px; | |||||
| background: none; | |||||
| cursor: pointer; | |||||
| } | |||||
| .asset-picker-btn:active { | |||||
| opacity: 0.65; | |||||
| } | |||||
| .asset-picker-btn-icon { | |||||
| width: 26px; | |||||
| height: 26px; | |||||
| flex-shrink: 0; | |||||
| object-fit: contain; | |||||
| } | |||||
| .asset-picker-menu { | |||||
| display: none; | |||||
| position: absolute; | |||||
| right: 0; | |||||
| top: calc(100% + 6px); | |||||
| min-width: 160px; | |||||
| padding: 6px 0; | |||||
| border-radius: 10px; | |||||
| background: rgba(26, 26, 26, 0.97); | |||||
| border: 1px solid rgba(255, 255, 255, 0.12); | |||||
| box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); | |||||
| z-index: 2000; | |||||
| } | |||||
| .asset-picker-menu.open { | |||||
| display: flex; | |||||
| flex-direction: column; | |||||
| } | |||||
| .asset-picker-coin-icon { | |||||
| width: 22px; | |||||
| height: 22px; | |||||
| flex-shrink: 0; | |||||
| object-fit: contain; | |||||
| } | |||||
| .asset-picker-option { | |||||
| display: flex; | |||||
| align-items: center; | |||||
| gap: 10px; | |||||
| width: 100%; | |||||
| padding: 10px 14px; | |||||
| border: none; | |||||
| background: transparent; | |||||
| color: #fff; | |||||
| text-align: left; | |||||
| font-size: 0.9rem; | |||||
| cursor: pointer; | |||||
| } | |||||
| .asset-picker-option:hover { | |||||
| background: rgba(255, 255, 255, 0.08); | |||||
| } | } | ||||
| .history-button, | .history-button, | ||||
| .settings-button { | .settings-button { | ||||
| background: none; | background: none; | ||||
| border: none; | border: none; | ||||
| width: 36px; | width: 36px; | ||||
| height: 36px; | height: 36px; | ||||
| ▲ Show 20 Lines • Show All 1,072 Lines • Show Last 20 Lines | |||||