Skip to content

Commit dee54eb

Browse files
committed
Fix flex
1 parent 024e038 commit dee54eb

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

solid/src/App.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,12 @@ function App() {
110110

111111
return (
112112
<div>
113-
<div class="flex-column my-1">
113+
<div class="flex flex-col my-1">
114114
<div>
115115
<>
116116
<div>
117117
{targetDevice() && (
118-
<div class="flex justify-between mt-2 align-mid">
118+
<div class="flex justify-between mt-2">
119119
<span class="font-bold">
120120
Device:{" "}
121121
{`${targetDevice()?.name} (${
@@ -125,7 +125,7 @@ function App() {
125125
</div>
126126
)}
127127
{targetProject() && (
128-
<div class="flex justify-between mt-2 align-mid">
128+
<div class="flex justify-between mt-2">
129129
<span class="font-bold">
130130
Project:{" "}
131131
{`${targetProject()?.name} (${
@@ -137,12 +137,12 @@ function App() {
137137
</div>
138138

139139
{targetDevice() && targetProject() && (
140-
<div class="flex mt-3 justify-between">
140+
<div class="flex flex-col mt-3 justify-center items-stretch gap-2">
141141
<button
142142
class={`bg-vsgreen ${btn} py-2 px-6`}
143143
onClick={onSend}
144144
>
145-
SEND
145+
PUSH CHANGES TO SERVER
146146
</button>
147147

148148
<button
@@ -157,7 +157,7 @@ function App() {
157157
})
158158
}
159159
>
160-
RECEIVE
160+
FETCH CHANGES AND APPLY
161161
</button>
162162
</div>
163163
)}
@@ -193,7 +193,7 @@ function Projects({
193193
<div class="py-2">
194194
<p class="my-0">Choose a device</p>
195195

196-
<div class="flex-column mt-2">
196+
<div class="flex flex-col mt-2">
197197
<For each={projects()} fallback={<span>Empty</span>}>
198198
{(project) => (
199199
<div class="flex justify-between my-1">
@@ -231,7 +231,7 @@ function Devices({ onChoose }: { onChoose: (device: Device) => void }) {
231231
<div class="py-2">
232232
<p class="my-0">Choose a device</p>
233233

234-
<div class="flex-column mt-2">
234+
<div class="flex flex-col mt-2">
235235
<For each={devices()} fallback={<span>Empty</span>}>
236236
{(device) => (
237237
<div class="flex justify-between my-1">

0 commit comments

Comments
 (0)