split-timeline: fix class scoping

Signed-off-by: Varun Patil <varunpatil@ucla.edu>
pull/563/head
Varun Patil 2023-03-30 12:08:41 -07:00
parent bcf14cd434
commit 279c74fae9
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<template> <template>
<div class="container"> <div class="split-container">
<div class="primary" ref="primary"> <div class="primary" ref="primary">
<component :is="primary" /> <component :is="primary" />
</div> </div>
@ -105,7 +105,7 @@ export default defineComponent({
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.container { .split-container {
width: 100%; width: 100%;
height: 100%; height: 100%;
display: flex; display: flex;
@ -146,7 +146,7 @@ export default defineComponent({
} }
@media (max-width: 768px) { @media (max-width: 768px) {
.container { .split-container {
flex-direction: column; flex-direction: column;
> div { > div {