Toggle formatting on click. Renamed charts folder to metrics.

This commit is contained in:
Mike Cao 2020-08-21 13:43:42 -07:00
parent d9f3c385fb
commit e75593443a
19 changed files with 33 additions and 28 deletions

View file

@ -0,0 +1,31 @@
.container {
display: flex;
flex-direction: column;
}
.title {
font-size: var(--font-size-large);
line-height: 60px;
font-weight: 600;
}
.header {
min-height: 90px;
}
.metrics {
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 0;
}
.sticky {
position: fixed;
top: 0;
margin: auto;
background: var(--gray50);
border-bottom: 1px solid var(--gray300);
z-index: 3;
}