init: layout

This commit is contained in:
Johannes Kirschbauer
2023-08-05 13:51:33 +02:00
committed by hsjobeki
parent 4ec7e13e96
commit a0a137191d
12 changed files with 2460 additions and 13 deletions

View File

@@ -0,0 +1,10 @@
/**
* use this template literal to write tailwind classes
* example: tw`transition-colors duration-300 ease-in-out active:duration-100`
*
* to use this, you need to add the following to your tailwind plugin configuration (Intellij settings)
* "experimental": {
* "classRegex": ["tw`(.*)`"]
* }
*/
export const tw = String.raw;