Merge pull request #2779 from krille-chan/krille/design-update

chore: Small design adjustments
This commit is contained in:
Krille-chan 2026-03-28 15:41:03 +01:00 committed by GitHub
commit b0a1c7b990
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 3 deletions

View file

@ -108,6 +108,7 @@ class SignInPage extends StatelessWidget {
SizedBox.square(
dimension: 32,
child: IconButton(
tooltip: website,
icon: const Icon(
Icons.open_in_new_outlined,
size: 16,

View file

@ -54,11 +54,11 @@ class SpacesNavigationRail extends StatelessWidget {
isSelected: activeSpaceId == null,
onTap: onGoToChats,
icon: const Padding(
padding: EdgeInsets.all(10.0),
padding: EdgeInsets.all(8.0),
child: Icon(Icons.forum_outlined),
),
selectedIcon: const Padding(
padding: EdgeInsets.all(10.0),
padding: EdgeInsets.all(8.0),
child: Icon(Icons.forum),
),
toolTip: L10n.of(context).chats,
@ -71,7 +71,7 @@ class SpacesNavigationRail extends StatelessWidget {
isSelected: false,
onTap: () => context.go('/rooms/newspace'),
icon: const Padding(
padding: EdgeInsets.all(8.0),
padding: EdgeInsets.all(6.0),
child: Icon(Icons.add),
),
toolTip: L10n.of(context).createNewSpace,
@ -94,6 +94,7 @@ class SpacesNavigationRail extends StatelessWidget {
icon: Avatar(
mxContent: allSpaces[i].avatar,
name: displayname,
size: 36,
shapeBorder: RoundedSuperellipseBorder(
side: BorderSide(
width: 1,