You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
385 B
17 lines
385 B
@import "../css/background.css";
|
|
@import "import-test-d.css";
|
|
|
|
@import "imports/logo";
|
|
@import "imports/font";
|
|
|
|
.unquoted-relative-path-bg() {
|
|
background-image: url(../../data/image.jpg);
|
|
}
|
|
.quoted-relative-path-border-image() {
|
|
border-image: url('../../data/image.jpg');
|
|
}
|
|
|
|
#imported-relative-path {
|
|
.unquoted-relative-path-bg;
|
|
.quoted-relative-path-border-image;
|
|
}
|