File tree 1 file changed +4
-3
lines changed
frontend/src/lib/components/mod-details
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 368
368
<div class ="card shadow-xl min-w-[11rem] z-10 duration-0 overflow-y-auto !mt-0" data-popup ={changeVersionMenuPopupId }>
369
369
<ul >
370
370
<li >
371
- <button class ="btn w-full h-full text-left" on:click ={() => installVersion (null )}>
371
+ <button class ="btn variant-filled bg-surface-100-800-token text-token w-full h-full text-left" on:click ={() => installVersion (null )}>
372
372
<div class =" w-7 h-7 p-1" >
373
373
{#if manifestVersion === ' >=0.0.0' }
374
374
<SvgIcon class ="h-full w-full" icon ={mdiCheck } />
381
381
</li >
382
382
{#each mod ?.versions ?? [] as version }
383
383
<li class =" flex" >
384
- <button class ="btn w-full h-full text-left" on:click ={() => installVersion (version .version )}>
384
+ <button class ="btn variant-filled bg-surface-100-800-token text-token w-full h-full text-left" on:click ={() => installVersion (version .version )}>
385
385
<div class =" w-7 h-7 p-1" >
386
386
{#if manifestVersion === version .version }
387
387
<SvgIcon class ="h-full w-full" icon ={mdiCheck } />
388
388
{/if }
389
389
</div >
390
390
<span class ="flex-auto" >{version .version }</span >
391
391
</button >
392
- <button class ="btn w-full h-full text-left" on:click ={() => installVersion (` >=${version .version } ` )}>
392
+ <div class =" divider-vertical" />
393
+ <button class ="btn variant-filled bg-surface-100-800-token text-token rounded-none w-full h-full text-left" on:click ={() => installVersion (` >=${version .version } ` )}>
393
394
<span class =" flex-auto" >
394
395
<T defaultValue =" or newer" keyName =" mod-details.change-version-or-newer" />
395
396
</span >
You can’t perform that action at this time.
0 commit comments