Skip to content

Commit

Permalink
Move panels under one div
Browse files Browse the repository at this point in the history
  • Loading branch information
cats256 committed Jul 23, 2023
1 parent 5cbaa31 commit 04d2024
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion popup/popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ button:hover {
font-size: 20px;
}

.panel {
#panel {
flex-grow: 1;
}

Expand Down
8 changes: 5 additions & 3 deletions popup/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@
</head>
<body>
<div id="focus-block">Focus Tab</div>
<div class="panel" id="pomodoro-timer" hidden></div>
<div class="panel" id="focus-tab"></div>
<div class="panel" id="settings-tab" hidden><div style="text-align: center">In Development</div></div>
<div id="panel">
<div id="pomodoro-timer" hidden></div>
<div id="focus-tab"></div>
<div id="settings-tab" hidden><div style="text-align: center">In Development</div></div>
</div>
<div id="button-container">
<button type="button" id="timer">
<span class="material-symbols-outlined"> timer </span>
Expand Down

0 comments on commit 04d2024

Please sign in to comment.