Files
react-weather-app/src/components/NavBar/styles.ts
T
Hazem Krimi b20db5a08e Add logo
2021-09-19 18:53:03 +01:00

26 lines
382 B
TypeScript

import styled from 'styled-components';
export const Wrapper = styled.nav`
display: grid;
grid-template-columns: 1fr 0.7fr;
align-items: center;
padding: 0.5rem 0rem;
.logo {
display: flex;
flex-direction: row;
align-items: center;
img {
width: 36px;
height: 36px;
}
h1 {
margin-left: 0.5rem;
cursor: pointer;
justify-self: flex-start;
}
}
`;