Skip to content

Commit b07fd76

Browse files
committed
refactor(styles): update import paths to use absolute paths and add StyledAgenda component
1 parent 56c295b commit b07fd76

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/views/Talks/Talks.style.ts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { styled } from "styled-components";
2-
import { Color } from "../../styles/colors";
2+
import { Color } from "@styles/colors";
33
import {
44
BIG_BREAKPOINT,
55
MOBILE_BREAKPOINT,
66
TABLET_BREAKPOINT,
7-
} from "../../constants/BreakPoints";
7+
} from "@constants/BreakPoints";
88
import { Link } from "react-router";
99

1010
export const StyledTitleContainer = styled.div`
@@ -95,7 +95,14 @@ export const StyledSessionSection = styled.section`
9595
align-items: stretch;
9696
width: 90%;
9797
`;
98+
export const StyledAgenda = styled.div`
99+
display: flex;
100+
margin: 1rem;
98101
102+
@media (max-width: ${MOBILE_BREAKPOINT}px) {
103+
flex-direction: column;
104+
}
105+
`;
99106
export const StyledTalkSpeaker = styled.p`
100107
font-size: 1em;
101108

0 commit comments

Comments
 (0)