diff --git a/public/css/style.css b/public/css/style.css index 9538b26..51752d9 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -646,6 +646,34 @@ input:checked+.slider:before { background: rgba(99, 102, 241, 0.05); } +.btn-icon-sm { + background: var(--bg-input); + border: 1px solid var(--border-color); + border-radius: var(--radius-sm); + width: 32px; + height: 32px; + padding: 0; + display: flex; + align-items: center; + justify-content: center; + color: var(--text-muted); + cursor: pointer; + transition: all 0.2s ease; + flex-shrink: 0; +} + +.btn-icon-sm:hover { + border-color: var(--border-hover); + color: var(--accent-indigo); + background: rgba(99, 102, 241, 0.05); + transform: rotate(-15deg); +} + +.btn-icon-sm svg { + width: 16px; + height: 16px; +} + .chart-title { display: flex; align-items: center; diff --git a/public/index.html b/public/index.html index 10ecfff..1006168 100644 --- a/public/index.html +++ b/public/index.html @@ -242,7 +242,8 @@