@@ -9,11 +9,11 @@ export default function Web() {
99 const testWarnings = [ "This is an example of a conversion warning message." ] ;
1010
1111 return (
12- < div className = "flex flex-col p-8 space-y -2" >
12+ < div className = "flex flex-col p-8 gap -2" >
1313 < p className = "text-3xl font-bold" > Debug Mode</ p >
1414 < div className = "h-0.5 bg-gray-100 rounded" > </ div >
1515
16- < div className = "flex w-full space-x -2" >
16+ < div className = "flex w-full gap -2" >
1717 < div className = "bg-gray-100 p-2 rounded-md" >
1818 < div className = "bg-white w-96 shadow-md rounded-md" >
1919 < PluginFigmaToolbar variant = "(Light)" />
@@ -56,7 +56,7 @@ export default function Web() {
5656 < div >
5757 Plugin dropdown selection (each frame a different breakpoint)
5858 </ div >
59- < div className = "flex space-x -4" >
59+ < div className = "flex gap -4" >
6060 < div className = "w-24 h-12 bg-red-400" > </ div >
6161 < div className = "w-12 h-12 bg-green-500" > </ div >
6262 < div className = "w-4 h-12 bg-blue-600" > </ div >
@@ -65,7 +65,7 @@ export default function Web() {
6565
6666 < div >
6767 < div > Outputs from plugin (different screen sizes)</ div >
68- < div className = "flex space-x -4" >
68+ < div className = "flex gap -4" >
6969 < div className = "w-24 h-12 bg-gray-400" > </ div >
7070 < div className = "w-12 h-12 bg-gray-500" > </ div >
7171 < div className = "w-4 h-12 bg-gray-600" > </ div >
@@ -74,7 +74,7 @@ export default function Web() {
7474
7575 < div >
7676 < div > - Experiment on dark mode (invert colors on output) </ div >
77- < div className = "flex space-x -4" >
77+ < div className = "flex gap -4" >
7878 < div className = "w-24 h-12 bg-gray-900" > </ div >
7979 < div className = "w-12 h-12 bg-gray-800" > </ div >
8080 < div className = "w-4 h-12 bg-gray-700" > </ div >
@@ -106,7 +106,7 @@ export default function Web() {
106106}
107107
108108const PluginFigmaToolbar = ( props : { variant : string } ) => (
109- < div className = "bg-gray-800 w-full h-8 flex items-center text-white space-x -4 px-4" >
109+ < div className = "bg-gray-800 w-full h-8 flex items-center text-white gap -4 px-4" >
110110 < span > Figma to Code { props . variant } </ span >
111111 </ div >
112112) ;
0 commit comments