Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: two factor authentication segment in preferences #600

Merged
merged 9 commits into from
Jul 21, 2021
Prev Previous commit
Next Next commit
fix: use flex-shrink instead of flex-shrink-max
  • Loading branch information
gorjan5sk committed Jul 21, 2021
commit b5532cc37d15bac070f8cd68dd65e0f6e807bac0
2 changes: 1 addition & 1 deletion app/assets/javascripts/preferences/components/pane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ export const PreferencesPane: FunctionComponent = ({ children }) => (
<div className="flex-grow flex flex-col py-6 items-center">
<div className="w-125 max-w-125 flex flex-col gap-3">{children}</div>
</div>
<div className="flex-basis-55 flex-shrink-max" />
<div className="flex-basis-55 flex-shrink" />
</div>
);