Add note regarding preference for SVG over entire font for logo text

This commit is contained in:
dannyrb 2019-05-19 20:15:07 -04:00
parent 05c0e1418c
commit a45eb42e6b

View File

@ -1,30 +1,31 @@
/* Sizes */ /* Sizes */
:root { :root {
--top-bar-height: 40px; --top-bar-height: 40px;
--top-bar-expanded-height: 160px; --top-bar-expanded-height: 160px;
--toolbar-height: 78px; --toolbar-height: 78px;
--toolbar-drawer-height: 62px; --toolbar-drawer-height: 62px;
--left-sidebar-menu-width: 307px; --left-sidebar-menu-width: 307px;
--right-sidebar-menu-width: 323px; --right-sidebar-menu-width: 323px;
--study-list-padding: 8%; --study-list-padding: 8%;
--study-list-padding-medium-screen: 10px; --study-list-padding-medium-screen: 10px;
} }
/* Fonts */ /* Fonts */
/* Logo font should be SVG so we don't need to load an entire font */
:root { :root {
--logo-font-family: "Sanchez"; --logo-font-family: 'Sanchez';
--logo-font-weight: 300; --logo-font-weight: 300; /* Sanchez, 300 does not exist */
} }
/* Transitions */ /* Transitions */
:root { :root {
--transition-duration: 0.3s; --transition-duration: 0.3s;
--transition-effect: ease; --transition-effect: ease;
--sidebar-transition: all 0.3s ease; --sidebar-transition: all 0.3s ease;
} }
/* Thicknesses */ /* Thicknesses */
:root { :root {
--viewport-border-thickness: 1px; --viewport-border-thickness: 1px;
--ui-border-thickness: 1px; --ui-border-thickness: 1px;
} }