@@ -65,7 +65,7 @@ function openAuthModal() {
6565 class =" border-none"
6666 >
6767 <!-- Stacked avatars when connected -->
68- <div
68+ <span
6969 v-if =" hasAnyConnection"
7070 class =" flex items-center"
7171 :class =" hasBothConnections ? '-space-x-2' : ''"
@@ -103,7 +103,7 @@ function openAuthModal() {
103103 >
104104 <span class =" i-carbon-cloud w-3 h-3 text-fg-muted" aria-hidden =" true" />
105105 </span >
106- </div >
106+ </span >
107107
108108 <!-- "connect" text when not connected -->
109109 <span v-if =" !hasAnyConnection" class =" font-mono text-sm" >
@@ -163,10 +163,10 @@ function openAuthModal() {
163163 >
164164 <span class =" i-carbon-terminal w-4 h-4 text-fg-muted" aria-hidden =" true" />
165165 </span >
166- <div class =" flex-1 min-w-0" >
167- <div class =" font-mono text-sm text-fg truncate" >~{{ npmUser }}</div >
168- <div class =" text-xs text-fg-subtle" >{{ $t('account_menu.npm_cli') }}</div >
169- </div >
166+ <span class =" flex-1 min-w-0" >
167+ <span class =" font-mono text-sm text-fg truncate block " >~{{ npmUser }}</span >
168+ <span class =" text-xs text-fg-subtle" >{{ $t('account_menu.npm_cli') }}</span >
169+ </span >
170170 <span
171171 v-if =" operationCount > 0"
172172 class =" px-1.5 py-0.5 font-mono text-xs rounded"
@@ -206,10 +206,12 @@ function openAuthModal() {
206206 >
207207 <span class =" i-carbon-cloud w-4 h-4 text-fg-muted" aria-hidden =" true" />
208208 </span >
209- <div class =" flex-1 min-w-0" >
210- <div class =" font-mono text-sm text-fg truncate" >@{{ atprotoUser.handle }}</div >
211- <div class =" text-xs text-fg-subtle" >{{ $t('account_menu.atmosphere') }}</div >
212- </div >
209+ <span class =" flex-1 min-w-0" >
210+ <span class =" font-mono text-sm text-fg truncate block"
211+ >@{{ atprotoUser.handle }}</span
212+ >
213+ <span class =" text-xs text-fg-subtle" >{{ $t('account_menu.atmosphere') }}</span >
214+ </span >
213215 </button >
214216 </div >
215217
@@ -236,16 +238,16 @@ function openAuthModal() {
236238 />
237239 <span v-else class =" i-carbon-terminal w-4 h-4 text-fg-muted" aria-hidden =" true" />
238240 </span >
239- <div class =" flex-1 min-w-0" >
240- <div class =" font-mono text-sm text-fg" >
241+ <span class =" flex-1 min-w-0" >
242+ <span class =" font-mono text-sm text-fg block " >
241243 {{
242244 isNpmConnecting
243245 ? $t('account_menu.connecting')
244246 : $t('account_menu.connect_npm_cli')
245247 }}
246- </div >
247- <div class =" text-xs text-fg-subtle" >{{ $t('account_menu.npm_cli_desc') }}</div >
248- </div >
248+ </span >
249+ <span class =" text-xs text-fg-subtle" >{{ $t('account_menu.npm_cli_desc') }}</span >
250+ </span >
249251 </button >
250252
251253 <button
@@ -258,12 +260,12 @@ function openAuthModal() {
258260 <span class =" w-8 h-8 rounded-full bg-bg-muted flex items-center justify-center" >
259261 <span class =" i-carbon-cloud w-4 h-4 text-fg-muted" aria-hidden =" true" />
260262 </span >
261- <div class =" flex-1 min-w-0" >
262- <div class =" font-mono text-sm text-fg" >
263+ <span class =" flex-1 min-w-0" >
264+ <span class =" font-mono text-sm text-fg block " >
263265 {{ $t('account_menu.connect_atmosphere') }}
264- </div >
265- <div class =" text-xs text-fg-subtle" >{{ $t('account_menu.atmosphere_desc') }}</div >
266- </div >
266+ </span >
267+ <span class =" text-xs text-fg-subtle" >{{ $t('account_menu.atmosphere_desc') }}</span >
268+ </span >
267269 </button >
268270 </div >
269271 </div >
0 commit comments