logo.js 700 B

12345678910111213141516171819202122232425262728293031323334
  1. const Logo = () => (
  2. <div className='logo'>
  3. <span id='circle'>u.</span>
  4. <span id='text'>fit</span>
  5. <style jsx>{`
  6. .logo {
  7. display: grid;
  8. grid-template-columns: 60px 60px;
  9. grid-auto-flow: column;
  10. grid-gap: 10px;
  11. font-family: roboto_black;
  12. font-size: 36px;
  13. font-weight: bold;
  14. }
  15. #circle {
  16. color: white;
  17. background-color: red;
  18. width: 60px;
  19. height: 60px;
  20. border-radius: 30px;
  21. text-align: right;
  22. vertical-align: text-bottom;
  23. }
  24. #text {
  25. height: 60px;
  26. vertical-align: text-bottom;
  27. }
  28. `}</style>
  29. </div>
  30. )
  31. export default Logo