]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/episodes/List.js
sticky schedule group headings
[alttp.git] / resources / js / components / episodes / List.js
index a28fa4848968b9e2fa2a455cec44c55b7b74a8c9..6f46e75add208811a83362e9521fb041ca4ab5bd 100644 (file)
@@ -18,7 +18,9 @@ const List = ({ episodes, onAddRestream, onEditRestream }) => {
 
        return <div className="episodes-list">
                {Object.entries(grouped).map(([day, group]) => <div key={day}>
-                       <h2 className="text-center my-5">{moment(day).format('dddd, L')}</h2>
+                       <h2 className="text-center episodes-group-heading">
+                               {moment(day).format('dddd, L')}
+                       </h2>
                        {group.map(episode =>
                                <Item
                                        episode={episode}