mirror of
https://github.com/immich-app/immich.git
synced 2025-12-04 11:49:53 +09:00
chore: remove beta wording and badges (#22040)
* chore: remove beta wordings and badges * chore: remove beta wordings and badges
This commit is contained in:
@@ -97,29 +97,11 @@ class _ImmichLogoWithText extends StatelessWidget {
|
||||
children: [
|
||||
Builder(
|
||||
builder: (context) {
|
||||
return Badge(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 6, vertical: 4),
|
||||
backgroundColor: context.primaryColor,
|
||||
alignment: Alignment.centerRight,
|
||||
offset: const Offset(16, -8),
|
||||
label: Text(
|
||||
'β',
|
||||
style: TextStyle(
|
||||
fontSize: 11,
|
||||
color: context.colorScheme.onPrimary,
|
||||
fontWeight: FontWeight.bold,
|
||||
fontFamily: 'OverpassMono',
|
||||
height: 1.2,
|
||||
),
|
||||
),
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.only(top: 3.0),
|
||||
child: SvgPicture.asset(
|
||||
context.isDarkTheme
|
||||
? 'assets/immich-logo-inline-dark.svg'
|
||||
: 'assets/immich-logo-inline-light.svg',
|
||||
height: 40,
|
||||
),
|
||||
return Padding(
|
||||
padding: const EdgeInsets.only(top: 3.0),
|
||||
child: SvgPicture.asset(
|
||||
context.isDarkTheme ? 'assets/immich-logo-inline-dark.svg' : 'assets/immich-logo-inline-light.svg',
|
||||
height: 40,
|
||||
),
|
||||
);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user