@test-fixtures/scss
Version:
SCSS test fixture
39 lines (32 loc) • 697 B
CSS
/*!
* SCSS test fixture (https://github.com/webdiscus/test-fixtures-scss)
* This is compiled CSS bundle.
* Copyleft 2022 @test-fixtures/scss
* Licensed under ISC (https://github.com/webdiscus/test-fixtures-scss/blob/master/LICENSE)
*/
/*! test to resolve url in css from module */
.image-bg {
background-image: url(../fixture-images/fixture-image-bg.png);
width: 246px;
height: 200px;
background-repeat: no-repeat;
background-size: cover;
}
.test-fixture-primary {
color: navy
}
.test-fixture-secondary {
color: purple
}
.test-fixture-success {
color: green
}
.test-fixture-info {
color: aqua
}
.test-fixture-warning {
color: #ff0
}
.test-fixture-danger {
color: red
}