mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-09-01 19:49:54 +02:00
web: fix overlapping text on default home page buttons in settings (#1406)
Signed-off-by: Muhammad Ali <alihamuh@gmail.com>
This commit is contained in:
@@ -874,7 +874,8 @@ function OptionsItem(props) {
|
||||
sx={{
|
||||
borderRadius: "default",
|
||||
overflow: "hidden",
|
||||
justifyContent: "space-evenly"
|
||||
justifyContent: "space-evenly",
|
||||
flexWrap: "wrap"
|
||||
}}
|
||||
>
|
||||
{options.map((option, index) => (
|
||||
@@ -895,7 +896,8 @@ function OptionsItem(props) {
|
||||
":hover": { color: selectedOption === index ? "static" : "text" },
|
||||
flex: 1,
|
||||
textAlign: "center",
|
||||
color: selectedOption === index ? "static" : "bgSecondaryText"
|
||||
color: selectedOption === index ? "static" : "bgSecondaryText",
|
||||
minWidth: 100
|
||||
}}
|
||||
>
|
||||
{option}
|
||||
|
||||
Reference in New Issue
Block a user