diff --git a/src/css/styles.scss b/src/css/styles.scss index d9d8544a..3fc2ff56 100644 --- a/src/css/styles.scss +++ b/src/css/styles.scss @@ -538,6 +538,10 @@ height: 3px; } + select::-webkit-scrollbar { + width: 10px; + } + ::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border-radius: 10px; diff --git a/src/excalidraw-app/components/LanguageList.tsx b/src/excalidraw-app/components/LanguageList.tsx index aaa5f213..c80acc9b 100644 --- a/src/excalidraw-app/components/LanguageList.tsx +++ b/src/excalidraw-app/components/LanguageList.tsx @@ -1,7 +1,7 @@ import { useSetAtom } from "jotai"; import React from "react"; import { appLangCodeAtom } from ".."; -import { defaultLang, useI18n } from "../../i18n"; +import { useI18n } from "../../i18n"; import { languages } from "../../i18n"; export const LanguageList = ({ style }: { style?: React.CSSProperties }) => { @@ -16,9 +16,6 @@ export const LanguageList = ({ style }: { style?: React.CSSProperties }) => { aria-label={t("buttons.selectLanguage")} style={style} > - {languages.map((lang) => (