Ensured consistent heights in settings cards

This commit is contained in:
Alejandro Celaya
2021-03-06 17:30:21 +01:00
parent e380ddb40f
commit e76b22b2ae
5 changed files with 6 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ interface UserInterfaceProps {
}
export const UserInterface: FC<UserInterfaceProps> = ({ settings: { ui }, setUiSettings }) => (
<SimpleCard title="User interface">
<SimpleCard title="User interface" className="h-100">
<FontAwesomeIcon icon={ui?.theme === 'dark' ? faMoon : faSun} className="user-interface__theme-icon" />
<ToggleSwitch
checked={ui?.theme === 'dark'}