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

@@ -172,7 +172,7 @@ const SessionsModal: FunctionComponent<{
{formatter.format(session.updated_at)}
</p>
<button
className="sn-button danger sk-label"
className="sn-button small danger sk-label"
disabled={session.revoking}
onClick={() =>
setRevokingSessionUuid(session.uuid)
@@ -213,14 +213,14 @@ const SessionsModal: FunctionComponent<{
</AlertDialogDescription>
<div className="flex my-1 gap-2">
<button
className="sn-button neutral sk-label"
className="sn-button small neutral sk-label"
ref={cancelRevokeRef}
onClick={closeRevokeSessionAlert}
>
<span>{SessionStrings.RevokeCancelButton}</span>
</button>
<button
className="sn-button danger sk-label"
className="sn-button small danger sk-label"
onClick={() => {
closeRevokeSessionAlert();
revokeSession(confirmRevokingSessionUuid);