summaryrefslogtreecommitdiff
path: root/src/screens/professor/Classroom/styles.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/screens/professor/Classroom/styles.js')
-rw-r--r--src/screens/professor/Classroom/styles.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/screens/professor/Classroom/styles.js b/src/screens/professor/Classroom/styles.js
new file mode 100644
index 0000000..fe6018c
--- /dev/null
+++ b/src/screens/professor/Classroom/styles.js
@@ -0,0 +1,34 @@
+// ========== Desktop ==========
+const desktopContainer = {
+ width: '100%',
+ height: '100vh',
+ backgroundColor: '#red',
+ padding: 0,
+ margin: 0,
+ marginTop: '50px',
+};
+
+const desktop = {
+ container: desktopContainer,
+};
+
+// ========== Mobile ==========
+const mobileContainer = {
+ width: '90%',
+ backgroundColor: '#red',
+ padding: 0,
+ marginTop: '30px',
+ paddingBottom: '100px',
+};
+
+const mobile = {
+ container: mobileContainer,
+};
+
+// ========== Unset ==========
+const unset = {
+ container: null,
+};
+
+const styles = { desktop, mobile, unset };
+export default styles;