diff --git a/static/css/index.css b/static/css/index.css index d8fbef9..6794ccc 100644 --- a/static/css/index.css +++ b/static/css/index.css @@ -10,46 +10,39 @@ body { background-color: white; } margin-bottom: 16px; } -.severity-warning { - color: var(--red-0-color); -} +.severity-warning { color: var(--red-0-color); } -#app-header nav { - position: relative; - display: flex; - justify-content: space-between; +#recipe-nav { + display: grid; + grid-template-columns: 3fr 1fr 1fr 3fr; + column-gap: 8px; + height: 36px; } -#app-header nav > :first-child { padding-left: 0; } +#command-menu, +#command-menu-back { + padding-left: 0; + justify-self: left; +} -#app-header nav > :last-child { padding-right: 0; } +#command-clear { + justify-self: right; + padding-right: 0; +} -/* Promo link start */ -#promo { - /* Center itself, ignore flex */ - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - width: 36px; - height: 36px; - border-radius: 18px; +.link-icon { + position: relative; } -.promo__icon { - position: absolute; +.link-icon > svg { + position: relative; left: 50%; top: 50%; - transform: translate(-50%, -40%); -} - -.promo__icon svg { + transform: translate(-50%, -50%); width: 24px; height: 24px; - color: var(--special-0-color); } -/* Promo link end */ .toggle-wide { display: grid; diff --git a/static/icons/dollar.svg b/static/icons/dollar.svg new file mode 100644 index 0000000..9ab4aae --- /dev/null +++ b/static/icons/dollar.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/icons/heart.svg b/static/icons/heart.svg new file mode 100644 index 0000000..85c0a55 --- /dev/null +++ b/static/icons/heart.svg @@ -0,0 +1,3 @@ + + + diff --git a/templates/index.html b/templates/index.html index c637db5..2bdb5a0 100644 --- a/templates/index.html +++ b/templates/index.html @@ -20,7 +20,8 @@