Fix styles conflict with timelines

d6054e1555222926471ea8ef1c59350dc4111eb6

Cohee <18619528+Cohee1207@users.noreply.github.com>

2 files changed, +3 -3Ignore whitespace
public/css/welcome.css+1 -1
@@ -186,7 +186,7 @@ body.big-avatars .welcomeRecent .recentChatList .recentChat .chatMessageContaine
186186 align-self: center;
187187}
188188
189189.welcomeRecent .recentChatList .showMoreChats.rotaterotated {
190190 transform: rotate(180deg);
191191}
192192
public/scripts/welcome-screen.js+2 -2
@@ -107,11 +107,11 @@ async function sendWelcomePanel() {
107107 const hiddenChats = fragment.querySelectorAll('.recentChat.hidden');
108108 fragment.querySelectorAll('button.showMoreChats').forEach((button) => {
109109 button.addEventListener('click', () => {
110110 const rotate = button.classList.contains('rotaterotated');
111111 hiddenChats.forEach((chatItem) => {
112112 chatItem.classList.toggle('hidden', rotate);
113113 });
114114 button.classList.toggle('rotaterotated', !rotate);
115115 });
116116 });
117117 fragment.querySelectorAll('button.openTemporaryChat').forEach((button) => {