Skip to content

Commit

Permalink
remove extra classes
Browse files Browse the repository at this point in the history
  • Loading branch information
antimatter96 committed Jan 1, 2022
1 parent 0a3d9a6 commit 1186570
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 31 deletions.
18 changes: 9 additions & 9 deletions dist/index.bd513a2f.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 0 additions & 13 deletions dist/index.cc8dc349.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions src/src/js/week.ts
Original file line number Diff line number Diff line change
Expand Up @@ -592,10 +592,10 @@ export function templateFunc(week: Week) {
<div class="rounded-lg">
<!-- Heading -->
<div class="week-heading-draggable pt-2 px-5 mx-auto md:items-center md:flex-row justify-between bg-gray-800">
<div class="week-heading-draggable pt-2 px-5 mx-auto justify-between bg-gray-800">
<div class="week-heading-draggable w-full border-b-2 border-white justify-between inline-flex">
<div class="week-heading-draggable inline-flex items-center">
<h2 class="week-heading-draggable pb-1 text-2xl font-bold text-white lg:text-x lg:mr-8">
<h2 class="week-heading-draggable pb-1 text-2xl font-bold text-white">
${week.name}
</h2>
</div>
Expand All @@ -618,7 +618,7 @@ export function templateFunc(week: Week) {
</div>
<!-- Summary -->
<div ?hidden=${week.hidden} class="pt-1 px-5 mx-auto md:items-center md:flex-row justify-between ${classMap(progressColorBg)}">
<div ?hidden=${week.hidden} class="pt-1 px-5 mx-auto justify-between ${classMap(progressColorBg)}">
<div class="pb-1 px-10 flex justify-between items-center border-b-2 border-gray-600">
<p class="dispay-container">
<span class="dispay-label justify-start">Projected:</span>
Expand All @@ -638,9 +638,9 @@ export function templateFunc(week: Week) {
</div>
<!-- Videos -->
<div ?hidden=${week.hidden} class="pt-2 bt-5 px-5 mx-auto md:items-center md:flex-row justify-between">
<div ?hidden=${week.hidden} class="pt-2 bt-5 px-5 mx-auto justify-between">
<div class="w-full border-b-2 border-gray-600">
<h2 class="text-xl font-extrabold mb-2 text-black lg:text-x lg:mr-8">
<h2 class="text-xl font-extrabold mb-2 text-black">
Videos
</h2>
<div class="video-container flex justify-evenly flex-wrap ${classMap(videosContainerClass)}">
Expand All @@ -650,9 +650,9 @@ export function templateFunc(week: Week) {
</div>
<!-- Solvable -->
<div ?hidden=${solvables.length == 0 || week.hidden} class="pt-3 bt-5 px-5 mx-auto md:items-center md:flex-row justify-between">
<div ?hidden=${solvables.length == 0 || week.hidden} class="pt-3 bt-5 px-5 mx-auto justify-between">
<div class="w-full ${classMap(solvableContainerBorderBottom)}">
<h2 class="text-xl font-extrabold mb-2 text-black lg:text-x lg:mr-8">
<h2 class="text-xl font-extrabold mb-2 text-black">
Solvable
</h2>
Expand All @@ -662,9 +662,9 @@ export function templateFunc(week: Week) {
</div>
</div>
<div ?hidden=${!week.hasProgrammable || week.hidden} class="pt-3 pb-3 bt-5 px-5 mx-auto md:items-center md:flex-row justify-between">
<div ?hidden=${!week.hasProgrammable || week.hidden} class="pt-3 pb-3 bt-5 px-5 mx-auto justify-between">
<div class="w-full">
<h2 class="text-xl font-extrabold mb-2 text-black lg:text-x lg:mr-8">
<h2 class="text-xl font-extrabold mb-2 text-black">
Programming
</h2>
Expand Down

0 comments on commit 1186570

Please sign in to comment.