Skip to content

Commit 3e6a970

Browse files
committed
chore(readme): fix url
1 parent 965436a commit 3e6a970

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ And import the theme in your project's main CSS file (e.g., `src/styles.scss`).
5252
### CSS Variables
5353

5454
To customize the library's default styles to match your design, several CSS variables are provided. See this file for details:
55-
https://github.com/rdlabo-team/ionic-theme-ios26/blob/main/src/default-variables.scss
55+
https://github.com/rdlabo-team/ionic-theme-ios26/blob/main/src/styles/default-variables.scss
5656

5757

5858
## Features
@@ -74,7 +74,7 @@ Add the `.ios26-disabled` class to disable the iOS26 theme on specific component
7474
Import the SCSS files from the main package to use the liquid glass mixin.
7575

7676
```scss
77-
@use '@rdlabo/ionic-theme-ios26/src/utils/api';
77+
@use '@rdlabo/ionic-theme-ios26/src/styles/utils/api';
7878

7979
ion-textarea label.textarea-wrapper {
8080
@include api.glass-background;
@@ -176,7 +176,7 @@ When importing individual components with dark mode support, use SCSS instead of
176176
177177
Always (Always Dark Mode):
178178
```scss
179-
@use '@rdlabo/ionic-theme-ios26/src/utils/theme-dark';
179+
@use '@rdlabo/ionic-theme-ios26/src/styles/utils/theme-dark';
180180

181181
:root {
182182
@include theme-dark.default-variables;
@@ -188,7 +188,7 @@ Always (Always Dark Mode):
188188
189189
System (Follow System Settings):
190190
```scss
191-
@use '@rdlabo/ionic-theme-ios26/src/utils/theme-dark';
191+
@use '@rdlabo/ionic-theme-ios26/src/styles/utils/theme-dark';
192192

193193
@media (prefers-color-scheme: dark) {
194194
:root {
@@ -202,7 +202,7 @@ System (Follow System Settings):
202202
203203
Class (Toggle with CSS Class):
204204
```scss
205-
@use '@rdlabo/ionic-theme-ios26/src/utils/theme-dark';
205+
@use '@rdlabo/ionic-theme-ios26/src/styles/utils/theme-dark';
206206

207207
.ion-palette-dark {
208208
@include theme-dark.default-variables;

0 commit comments

Comments
 (0)