Add name to games page title

This commit is contained in:
2026-02-14 15:05:24 -07:00
parent 0163e09b02
commit a1a69c9ac5

View File

@@ -64,7 +64,17 @@ export default function Installs () {
return ( return (
<div className='mx-4 mt-4'> <div className='mx-4 mt-4'>
<div className='flex justify-between items-center mb-4'> <div className='flex justify-between items-center mb-4'>
<p className='text-3xl'>Installs</p> <p
className={`text-3xl truncate ${
category != -1
? 'w-[calc(100vw-495px)]'
: game.id == 1
? 'w-[calc(100vw-560px)]'
: 'w-[calc(100vw-440px)]'
}`}
>
{game.name} Installs
</p>
<div className='flex gap-2'> <div className='flex gap-2'>
<button <button
className='button btntheme1' className='button btntheme1'