mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 23:44:11 +02:00
17 lines
393 B
TypeScript
17 lines
393 B
TypeScript
import styled from "styled-components"
|
|
import JetBrainsLogo from "../../images/jetbrains-logo.svg"
|
|
|
|
export const HomePartnerWrapper = styled.div`
|
|
margin-top: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
font-family: "Oxygen Mono", monospace;
|
|
text-transform: uppercase;
|
|
font-size: 22px;
|
|
`
|
|
|
|
export const StyledJetBrainsLogo = styled(JetBrainsLogo)`
|
|
height: 110px;
|
|
margin: 0 16px;
|
|
`
|