We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56c295b commit b07fd76Copy full SHA for b07fd76
1 file changed
src/views/Talks/Talks.style.ts
@@ -1,10 +1,10 @@
1
import { styled } from "styled-components";
2
-import { Color } from "../../styles/colors";
+import { Color } from "@styles/colors";
3
import {
4
BIG_BREAKPOINT,
5
MOBILE_BREAKPOINT,
6
TABLET_BREAKPOINT,
7
-} from "../../constants/BreakPoints";
+} from "@constants/BreakPoints";
8
import { Link } from "react-router";
9
10
export const StyledTitleContainer = styled.div`
@@ -95,7 +95,14 @@ export const StyledSessionSection = styled.section`
95
align-items: stretch;
96
width: 90%;
97
`;
98
+export const StyledAgenda = styled.div`
99
+ display: flex;
100
+ margin: 1rem;
101
102
+ @media (max-width: ${MOBILE_BREAKPOINT}px) {
103
+ flex-direction: column;
104
+ }
105
+`;
106
export const StyledTalkSpeaker = styled.p`
107
font-size: 1em;
108
0 commit comments