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

@ -5,6 +5,7 @@
.left {
width: calc(100vw / 4);
box-shadow: var(--left-shadow);
@apply bg-primary-50 absolute top-0 bottom-0 left-0 z-10;
}
@ -15,5 +16,6 @@
.right {
width: calc(100vw / 4);
box-shadow: var(--right-shadow);
@apply bg-primary-50 absolute top-0 bottom-0 right-0 z-10;
}

View File

@ -33,7 +33,7 @@ const Home = () => {
<Screenshots />
<div className="pt-8 grid lg:grid-cols-2 lg:col-gap-10">
<div className="pt-8 grid lg:grid-cols-2 lg:gap-x-10">
<Feature
icon={IoIosRocket}
title="Create a resume thats worthy of who you are."

View File

@ -1,15 +1,17 @@
@media screen {
.container {
background-color: #212121;
@apply col-span-5 flex flex-col items-center;
}
.page {
width: 800px;
@apply block my-16 rounded shadow-2xl;
}
.footer {
@apply mb-16 text-white text-center opacity-50 leading-loose;
}
}
}