From 0e3799983e5deb43a2c6ca34eafd1c46ba7ee75d Mon Sep 17 00:00:00 2001 From: Ash Monty Date: Sat, 24 Sep 2022 15:00:02 +0200 Subject: [PATCH] fix(style): tier name not being centered properly --- public/assets/css/account.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/public/assets/css/account.css b/public/assets/css/account.css index 47da37e..bbed44e 100644 --- a/public/assets/css/account.css +++ b/public/assets/css/account.css @@ -12,9 +12,11 @@ /* Account settings sidebar */ .account-sidebar .user { - text-align: center; margin: 55px auto; width: fit-content; + display: flex; + flex-flow: column; + align-items: center; } .account-sidebar .user .miiname { font-size: 1.2rem; @@ -341,4 +343,4 @@ footer { .setting-card .setting-list { grid-template-columns: auto; } -} \ No newline at end of file +}