A sorter site for Idolm@ster Characters
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove info on result show, add some margin

+2 -1
+1 -1
src/css/styles.css
··· 167 167 .results { 168 168 font-size: 0.75em; 169 169 display: flex; 170 - justify-content: center; 171 170 align-content: flex-start; 172 171 width: 80%; 172 + margin: 2em auto; 173 173 } 174 174 175 175 @media all and (min-width: 600px) {
+1
src/js/main.js
··· 389 389 document.querySelectorAll('.finished.button').forEach(el => el.style.display = 'block'); 390 390 document.querySelectorAll('.sort.text').forEach(el => el.style.display = 'none'); 391 391 document.querySelector('.options').style.display = 'none'; 392 + document.querySelector('.info').style.display = 'none'; 392 393 393 394 const header = '<div class="result head"><div class="left">Order</div><div class="right">Name</div></div>'; 394 395 const imgRes = (char, num) => `<div class="result image"><div class="left"><span>${num}</span></div><div class="right"><img src="${char.img}"><div>${char.name}</div></div></div>`;