diff options
Diffstat (limited to 'static/pages/settings/index.js')
| -rw-r--r-- | static/pages/settings/index.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/static/pages/settings/index.js b/static/pages/settings/index.js index c46987b..5cc40be 100644 --- a/static/pages/settings/index.js +++ b/static/pages/settings/index.js @@ -6,7 +6,9 @@ const { Div, Img } = sfw.element.native; import Editable from '../../widgets/editable/index.js'; import PasswordDialog from '../../widgets/password-dialog/index.js'; -const css = await sfw.css(import.meta.url, './index.css'); +import stylesheet from './index.css'; + +const css = await sfw.css.sheet(stylesheet); export default class SettingsView extends sfw.element.Container { #profile_image |