Skip to content

Commit 2a6c8be

Browse files
moved from tailwind css to chakraui and banner dir added to ui
1 parent a55a932 commit 2a6c8be

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

tsconfig.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"compilerOptions": {
3+
"lib": [
4+
"dom",
5+
"dom.iterable",
6+
"esnext"
7+
],
8+
"allowJs": true,
9+
"skipLibCheck": true,
10+
"strict": false,
11+
"forceConsistentCasingInFileNames": true,
12+
"noEmit": true,
13+
"incremental": true,
14+
"esModuleInterop": true,
15+
"module": "esnext",
16+
"moduleResolution": "node",
17+
"resolveJsonModule": true,
18+
"isolatedModules": true,
19+
"jsx": "preserve"
20+
},
21+
"include": [
22+
"next-env.d.ts",
23+
"**/*.ts",
24+
"**/*.tsx"
25+
],
26+
"exclude": [
27+
"node_modules"
28+
]
29+
}

ui/banner/BlankRasaBanner1.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const BlankRasaBanner1 = () => {
2121
return (
2222
<Box
2323
bg={ bg }
24-
boxShadow={{ base: 'none', lg: bgBoxShadowDesktop }}
24+
boxShadow={ bgBoxShadowDesktop }
2525
borderRadius="md"
2626
pt={ 5 }
2727
px={ 5 }

ui/banner/BlankRasaBanner2.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const BlankRasaBanner2 = () => {
2626
borderRadius="md"
2727
p={ 5 }
2828
display="flex"
29-
alignItems={ [ 'center' ] }
29+
alignItems={ [ '', 'center' ] }
3030
justifyContent="space-between"
3131
flexDirection={ [ 'column', 'row' ] }
3232
>
@@ -42,7 +42,7 @@ const BlankRasaBanner2 = () => {
4242
alt="logo2"
4343
filter={ imgColor }
4444
/>
45-
<Box w={ [ '100%', '60%', '50%' ] }>
45+
<Box w={ [ '100%', '50%' ] }>
4646
<Heading as="h2" size="md" mb={ 2 } fontWeight="bold">
4747
Blank Rasa
4848
</Heading>

0 commit comments

Comments
 (0)