styles: fix button classes

This commit is contained in:
Antonella Sgarlatta
2021-05-13 14:26:12 -03:00
parent 5f654f8ebb
commit bc10fbf788
8 changed files with 24 additions and 24 deletions

View File

@@ -13,14 +13,14 @@ function NoProtectionsNoteWarning({ appState, onViewNote }: Props) {
</p>
<div className="mt-4 flex gap-3">
<button
className="sn-button info"
className="sn-button small info"
onClick={() => {
appState.accountMenu.setShow(true);
}}
>
Open account menu
</button>
<button className="sn-button outlined" onClick={onViewNote}>
<button className="sn-button small outlined" onClick={onViewNote}>
View note
</button>
</div>