Skip to content

Commit 1a6d194

Browse files
Quick Info CSS Change
- Changed min width from 800 to 1000 - Changed labels of quick stats - Changed quick stats text label size so that it can fix better and prevent going to the next line
1 parent 9a7abe4 commit 1a6d194

4 files changed

Lines changed: 18 additions & 20 deletions

File tree

src/index.css

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ input {
4848
box-shadow: inset 0px 0px 5px #0e0e0e;
4949
}
5050

51-
.inner-container h5 {
51+
.inner-container h6 {
5252
color: #7c90db;
5353
}
5454

@@ -142,8 +142,6 @@ p {
142142
filter: brightness(1.2);
143143
}
144144

145-
146-
147145
h1,h2,h3,h4,h5,h6 {
148146
padding: 0px;
149147
margin: 0px;

src/index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,35 +45,35 @@ <h1 class="fas fa-home" style="color: #7C90DB"></h1>
4545
<div class="quick-stats-top-bar-grid">
4646
<div class="inner-container header-and-container">
4747
<h3 id="totalActiveTasksCount"></h3>
48-
<h5>Active Tasks</h5>
48+
<h6>Active Tasks</h6>
4949
</div>
5050
<div class="inner-container header-and-container">
5151
<h3 id="totalCompleteTasksCount"></h3>
52-
<h5>Complete Tasks</h5>
52+
<h6>Complete Tasks</h6>
5353
</div>
5454
<div class="inner-container header-and-container">
5555
<h3 id="newTotalTaskCount"></h3>
56-
<h5>New Tasks (7 Days)</h5>
56+
<h6>New Tasks</h6>
5757
</div>
5858
<div class="inner-container header-and-container">
5959
<h3 id="newCompleteTaskCount"></h3>
60-
<h5>Complete (7 Days)</h5>
60+
<h6>New Complete</h6>
6161
</div>
6262
<div class="inner-container header-and-container">
6363
<h3 id="totalProjectsCount"></h3>
64-
<h5>Total Projects</h5>
64+
<h6>Total Projects</h6>
6565
</div>
6666
<div class="inner-container header-and-container">
6767
<h3 id="newProjectCount"></h3>
68-
<h5>New Projects (7 Days)</h5>
68+
<h6>New Projects</h6>
6969
</div>
7070
<div class="inner-container header-and-container">
7171
<h3 id="activeBulletpointsCount"></h3>
72-
<h5>Active Bullets</h5>
72+
<h6>Active Bullets</h6>
7373
</div>
7474
<div class="inner-container header-and-container">
7575
<h3 id="completeBulletpointsCount"></h3>
76-
<h5>Complete Bullets</h5>
76+
<h6>Complete Bullets</h6>
7777
</div>
7878
</div>
7979
</div>

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const createWindow = () => {
6767
mainWindow = new BrowserWindow({
6868
width: width,
6969
height: height,
70-
minWidth: 800,
70+
minWidth: 1000,
7171
minHeight: 600,
7272
x: x,
7373
y: y,

src/project.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -125,35 +125,35 @@ <h2 id="completeText">Do you want to complete this project?</h2>
125125
<div id="quickProjectStats" class="quick-stats-top-bar-grid">
126126
<div class="inner-container header-and-container">
127127
<h3 id="activeTaskCount"></h3>
128-
<h5>Active Tasks</h5>
128+
<h6>Active Tasks</h6>
129129
</div>
130130
<div class="inner-container header-and-container">
131131
<h3 id="completeTaskCount"></h3>
132-
<h5>Complete Tasks</h5>
132+
<h6>Complete Tasks</h6>
133133
</div>
134134
<div class="inner-container header-and-container">
135135
<h3 id="newTaskCount"></h3>
136-
<h5>New Tasks (7 Days)</h5>
136+
<h6>New Tasks</h6>
137137
</div>
138138
<div class="inner-container header-and-container">
139139
<h3 id="newCompleteCount"></h3>
140-
<h5>Complete (7 Days)</h5>
140+
<h6>New Complete</h6>
141141
</div>
142142
<div class="inner-container header-and-container">
143143
<h3 id="activeProjectBulletpointsText"></h3>
144-
<h5>Active Bullets</h5>
144+
<h6>Active Bullets</h6>
145145
</div>
146146
<div class="inner-container header-and-container">
147147
<h3 id="completeProjectBulletpointsText"></h3>
148-
<h5>Complete Bullets</h5>
148+
<h6>Complete Bullets</h6>
149149
</div>
150150
<div class="inner-container header-and-container">
151151
<h3 id="projectDateCreatedText"></h3>
152-
<h5>Project Created</h5>
152+
<h6>Project Created</h6>
153153
</div>
154154
<div class="inner-container header-and-container">
155155
<h3 id="projectStatusText"></h3>
156-
<h5>Status</h5>
156+
<h6>Status</h6>
157157
</div>
158158
</div>
159159
<div id="editProjectDiv" style="display: none; grid-template-columns: repeat(3, 1fr); grid-gap: 10px;">

0 commit comments

Comments
 (0)