Tweak heading to better match Figma designs #42
Binary file not shown.
Binary file not shown.
Submodule web/src/cascade updated: 62f961293d...e634591e27
@@ -8,6 +8,9 @@
|
||||
@import "tailwindcss/base";
|
||||
@import "tailwindcss/components";
|
||||
@import "tailwindcss/utilities";
|
||||
|
||||
@import url('https://fonts.googleapis.com/css2?family=Ropa+Sans&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,500;1,700&display=swap')
|
||||
/**
|
||||
* END --- TAILWIND GENERATOR EDIT
|
||||
*/
|
||||
|
||||
@@ -22,9 +22,9 @@ const MainLayout = ({ children }) => {
|
||||
</li>
|
||||
<li>
|
||||
<Tooltip title="Very alpha, there's lots of work todo" >
|
||||
<div className="ml-8 flex">
|
||||
<h2 className="text-indigo-200 text-4xl font-ropa-sans tracking-widest">CadHub</h2>
|
||||
<div className="text-pink-500 pb-4 text-sm font-ropa-sans" >pre-alpha</div>
|
||||
<div className="ml-12 flex">
|
||||
<h2 className="text-indigo-300 text-5xl font-ropa-sans py-1 tracking-wider" style={{letterSpacing: '0.3em'}}>CadHub</h2>
|
||||
<div className="text-pink-400 text-sm font-bold font-ropa-sans" style={{paddingBottom: '2rem', marginLeft: '-1.8rem'}}>pre-alpha</div>
|
||||
</div>
|
||||
</Tooltip>
|
||||
</li>
|
||||
|
|
||||
|
||||
@@ -17,8 +17,8 @@ module.exports = {
|
||||
'md': '28rem'
|
||||
},
|
||||
fontFamily: {
|
||||
'ropa-sans': 'Ropa Sans',
|
||||
'roboto': 'Roboto'
|
||||
'ropa-sans': ['Ropa Sans', 'Arial', 'sans-serif'],
|
||||
'roboto': ['Roboto', 'Arial', 'sans-serif'],
|
||||
},
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user
Added a inline style tags. Because of how specific these styles are to this heading/logo and it doesn't need to be replicated else where as well as it's very precise with the placement of "pre-alpha" I think it's appropiate.
Nice job, I was confused about if I could used other way to style than tailwind
Sorry, I could have made that clearer.