This repository was archived by the owner on Nov 17, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ Let's make one more change. Although often you want CSS rules to apply equally t
231231Add the following as the first line of your app's ` app.css ` file:
232232
233233``` CSS
234- @import { url('~/platform.css') } ;
234+ @import url (' ~/platform.css' );
235235```
236236> ** IMPORTANT** : NativeScript is consistent with browser implementations, in that ` @import ` statements must precede all other CSS rules in a file.
237237
Original file line number Diff line number Diff line change @@ -428,7 +428,7 @@ If you have doubt about the original font name use [Font Book](https://support.a
428428The @import CSS rule allows you to import external CSS from local file, resource or url. These rules must precede all other types of rules.
429429
430430` ` ` CSS
431- @import { url(' http://some-domain.com/your-style.css' ) }
432- @import { url(' res://your-style.css' ) }
433- @import { url(' ~/your-style.css' ) }
431+ @import url (' http://some-domain.com/your-style.css' );
432+ @import url (' res://your-style.css' );
433+ @import url (' ~/your-style.css' );
434434` ` `
You can’t perform that action at this time.
0 commit comments