style: make "Advanced Options" button's styling similar to its previous "a" element's style

This commit is contained in:
VardanHakobyan
2021-06-16 15:18:06 +04:00
parent 96aaff5ff8
commit 6a3433d522
2 changed files with 7 additions and 1 deletions

View File

@@ -280,7 +280,7 @@ const Authentication = observer(({
<div className="sk-panel-row" /> <div className="sk-panel-row" />
<button <button
type="button" type="button"
className="sn-button small info" className="sk-a info font-bold text-left p-0 hover-text-underline"
onClick={() => { onClick={() => {
setShowAdvanced(!showAdvanced); setShowAdvanced(!showAdvanced);
}}> }}>

View File

@@ -8,6 +8,12 @@
display: none; display: none;
} }
.hover-text-underline {
&:hover {
text-decoration: underline;
}
}
/** /**
* A button that is just an icon. Separated from .sn-button because there * A button that is just an icon. Separated from .sn-button because there
* is almost no style overlap. * is almost no style overlap.