Skip to content
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,265 changes: 907 additions & 358 deletions client/components/status/__snapshots__/status.test.js.snap

Large diffs are not rendered by default.

73 changes: 73 additions & 0 deletions client/components/status/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,79 @@ progress + p.progress {
border: 1px solid #464646 !important;
}

.usage-box {
border: 1px solid #e4e4e7;
height: 236px;
width: 174px;
border-radius: 16px;
margin-bottom: 20px;
}

.usage-overview {
padding: 16px;
display: flex;
flex-direction: column;
align-items: start;
}

.usage-overview-title {
font-weight: 600;
font-size: 16px;
}

.usage-checks-container {
margin-top: 8px;
margin-bottom: 8px;
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
flex-wrap: wrap;
}

.usage-box-inner {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.usage-check-content {
display: flex;
gap: 16px;
flex-direction: column;
}

.usage-check-header {
display: flex;
align-items: center;
gap: 8px;
font-size: 18px;
font-weight: 600;
}

.usage-progress-wrapper {
width: 120px;
height: 120px;
}

.usage-progress-text {
text-align: center;
}

.usage-progress-remaining {
font-size: 12px;
}

.usage-check-used {
font-size: 12px;
text-align: center;
}

.usage-reset-info {
font-size: 12px;
}

@media screen and (min-width: 0px) and (max-width: 500px) {
.logout-modal-container p.message {
margin: 0 6%;
Expand Down
Loading
Loading