File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,9 @@ function Home() {
25
25
>
26
26
< p css = { tw `text-lg text-brightblue` } > Introducing the all new</ p >
27
27
< div css = { tw `text-white text-center space-y-12` } >
28
- < p css = { tw `text-5xl font-bold` } > HelpChat ToolBox</ p >
28
+ < p css = { tw `text-5xl font-bold overflow-hidden break-all` } >
29
+ HelpChat ToolBox
30
+ </ p >
29
31
< p css = { tw `text-base text-lightgray` } >
30
32
A collection of tools and solutions you might find useful for you
31
33
and your server.
@@ -43,7 +45,7 @@ function Home() {
43
45
` }
44
46
>
45
47
< div
46
- css = { tw `bg-white/10 backdrop-blur-sm drop-shadow-lg rounded-2xl grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4 p-6 sm:p-8 md:p-6 md:px-6 w-full` }
48
+ css = { tw `bg-white/10 backdrop-blur-sm drop-shadow-lg rounded-2xl grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4 p-6 sm:p-8 md:p-6 md:px-6 w-full max-width[90vw] overflow-hidden ` }
47
49
>
48
50
{ ( ( ) => {
49
51
const tools : JSX . Element [ ] = [ ] ;
@@ -96,7 +98,7 @@ function ToolboxCard({
96
98
return (
97
99
< Link href = { link } passHref >
98
100
< div
99
- css = { tw `p-3 rounded-2xl bg-white/10 hover:bg-white/20 text-white hover:cursor-pointer width[15rem] min-height[12rem] w-56 block grid grid-cols-1 place-items-center mix-blend-multiply` }
101
+ css = { tw `p-3 rounded-2xl bg-white/10 hover:bg-white/20 text-white hover:cursor-pointer width[15rem] max-w-full break-words min-height[12rem] w-56 block grid grid-cols-1 place-items-center mix-blend-multiply` }
100
102
>
101
103
< FontAwesomeIcon icon = { icon } size = { "3x" } />
102
104
< p css = { tw `font-bold text-lg margin-bottom[-1rem]` } > { name } </ p >
You can’t perform that action at this time.
0 commit comments