diff --git a/main.css b/main.css index 378e773..6e79bd5 100644 --- a/main.css +++ b/main.css @@ -6,6 +6,10 @@ align-items: center; display:flex; } + +summary { + display:flex; +} img.avatar { -webkit-border-radius: 50%; -moz-border-radius: 50%; diff --git a/spaces.html b/spaces.html index a5d1fac..d0bd81a 100644 --- a/spaces.html +++ b/spaces.html @@ -13,6 +13,10 @@ <%def name="render(room)">
+ % if room['name'] != "TOP": + % if room['name'] != "TOP" and room['name'] != "Libre Gaming": +
+ % endif
% if 'avatar_url' in room: @@ -31,13 +35,18 @@ % endif
+ % if room['name'] != "TOP" and room['name'] != "Libre Gaming": +
+ % endif + % endif % if 'children' in room: -
% for subroom in room['children']: ${render(subroom)} % endfor + % if room['name'] != "TOP" and room['name'] != "Libre Gaming":
+ % endif % endif