button { display: flex; align-items: center; background: var(--text-link); border: none; padding: 0.4rem 0.7rem; border-radius: 0.3rem; color: var(--bg-1); font-weight: 600; line-height: 1; font-size: 0.9rem; font-weight: 600; transition: all 100ms ease-out; cursor: pointer; &:active { opacity: 0.5; } svg { stroke-width: 2; width: 1rem; height: 1rem; margin-right: 0.3rem; } &.light { background: none; border: 0.1rem solid var(--text-link); color: var(--text-link); padding: 0.3rem 0.7rem; } &.delete { border: 2px solid var(--error); background: none; color: var(--error); } &.dark { background: var(--bg-4); color: white; padding: 0.8rem 1rem; font-weight: 500; } &.wrapped { flex-flow: column wrap; min-width: 5rem; svg { margin-right: 0; margin-bottom: 0.5rem; } } } .button-row { display: flex; gap: 0.3rem; align-items: center; }