mirror of
https://github.com/status-im/dappconnect-chat-sdk.git
synced 2025-02-22 11:08:16 +00:00
* scaffold website project with Next.js * set tamagui target * remove whitespace * update clean npm scripts * apply patches post-install * lock tamagui version * add patch-package to root * patch @tamagui/core-node * patch @tamagui/normalize-css-color * patch @achingbrain/ssdp * remove patches from website * update clean script in website * remove @tamagui/vite-plugin from dependencies * patch @tamagui/static * update node-version * define env vars
24 lines
306 B
CSS
24 lines
306 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body,
|
|
#__next {
|
|
height: 100%;
|
|
overscroll-behavior: none;
|
|
user-select: none;
|
|
color: #000;
|
|
}
|
|
|
|
*::selection {
|
|
color: #fff;
|
|
background: hsla(229, 71%, 57%, 1);
|
|
}
|
|
|
|
#app {
|
|
position: relative;
|
|
isolation: isolate;
|
|
height: 100%;
|
|
}
|