13 lines
188 B
TypeScript
13 lines
188 B
TypeScript
import styled from "styled-components";
|
|
|
|
export const IndustryInfoView = styled.main`
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
.title {
|
|
margin-bottom: 50px;
|
|
}
|
|
`
|