-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enhancement: overall playground page UI (#41)
- Loading branch information
Juliana Praxedes
authored
Oct 15, 2023
1 parent
ef96f87
commit 3f14627
Showing
5 changed files
with
133 additions
and
104 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { defineConfig } from 'windicss/helpers' | ||
import colors from 'windicss/colors' | ||
import plugin from 'windicss/plugin' | ||
|
||
export default defineConfig({ | ||
theme: { | ||
extend: { | ||
colors: { | ||
watermarkify: { | ||
500: '#62D7F4', | ||
}, | ||
}, | ||
}, | ||
}, | ||
plugins: [ | ||
plugin(({ addUtilities }) => { | ||
const newUtilities = { | ||
'.flex-2': { | ||
flex: '2', | ||
}, | ||
} | ||
addUtilities(newUtilities) | ||
}), | ||
], | ||
}) |