added style variant

This commit is contained in:
Burak Civan
2022-10-12 13:18:00 +03:00
parent 9da70a6988
commit 62359d35c3
2 changed files with 15 additions and 1 deletions

12
public/css/app.css vendored
View File

@ -51717,6 +51717,10 @@ body{
width: 50%;
}
.md\:grid-cols-2{
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.md\:flex-row{
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
@ -52220,6 +52224,10 @@ body{
margin-top: 2.25rem;
}
.xl\:ml-18{
margin-left: 4.5rem;
}
.xl\:hidden{
display: none;
}
@ -52236,6 +52244,10 @@ body{
width: 1.5rem;
}
.xl\:w-8\/12{
width: 66.666667%;
}
.xl\:grid-cols-4{
grid-template-columns: repeat(4, minmax(0, 1fr));
}