adding stylelint to repo

This commit is contained in:
Amruth Pillai
2020-10-04 08:58:01 +05:30
parent 469f53bf6e
commit a11db1db10
36 changed files with 851 additions and 43 deletions

View File

@ -1,14 +1,16 @@
.screenshot {
filter: grayscale(100%);
@apply shadow-xl rounded border-2 border-primary-100 ml-10;
@apply transition-all duration-200 ease-in-out;
}
.screenshot:hover {
filter: grayscale(0%);
@apply transition-all duration-200 ease-in-out;
}
.screenshot:first-child {
@apply ml-0;
}
}