1
0
mirror of https://github.com/GenderDysphoria/GenderDysphoria.fyi.git synced 2025-11-25 20:42:40 +00:00

New preact based frontend UI for the TTT.

Added rollup compiling
This commit is contained in:
Jocelyn Badgley (Twipped)
2020-03-08 14:01:00 -07:00
parent 67b168dba1
commit dad24e1199
33 changed files with 2322 additions and 172 deletions

View File

@@ -3,10 +3,8 @@
position: sticky;
bottom: 0;
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 5px;
justify-content: center;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1em 0;
margin-top: -1em;
@@ -17,6 +15,7 @@
> div {
display: flex;
flex-basis: 23%;
}
.btn {
@@ -24,16 +23,20 @@
box-shadow: 0px 1px 5px rgba(#000, 0.5);
color: white;
white-space: nowrap;
// width: 100%;
min-width: 75%;
width: 100%;
// min-width: 75%;
display: flex;
}
.back, .back .btn {
.btn.left {
justify-content: flex-start;
}
.forward, .forward .btn {
.btn.right {
justify-content: flex-end;
}
span.svg-icon {
margin-top: 1px;
}
}