人生啊人生 1 lună în urmă
părinte
comite
fac48c549e
1 a modificat fișierele cu 31 adăugiri și 1 ștergeri
  1. 31 1
      src/view/student/trainChapter/trainTheory.vue

+ 31 - 1
src/view/student/trainChapter/trainTheory.vue

@@ -8,6 +8,13 @@
 
         <div class="content">
 
+            <div class="contentLeft commonsScrollbarNew" >
+                <img class="demoImg" src="../../../assets/student/test/left.webp" />
+            </div>
+            <div class="contentRight commonsScrollbarNew" >
+                <img class="demoImg" src="../../../assets/student/test/right.webp" />
+            </div>
+
         </div>
         
     </div>
@@ -30,6 +37,7 @@ onMounted(() => {
 
 </script>
 <style lang="scss" scoped>
+@use "./css/commonsScrollbarNew.scss";
 
 .trainTheory {
     position: fixed;
@@ -51,7 +59,29 @@ onMounted(() => {
         left: 19.85rem;
         right: 19.85rem;
         bottom: 0px;
-        background-color: red;
+        
+        .contentLeft, .contentRight {
+
+            position: absolute;
+            top: 0px;
+            bottom: 0px;
+
+            .demoImg {
+                width: 100%;
+            }
+
+        }
+        
+        .contentLeft {
+            left: 0px;
+            width: 66%;
+        }
+
+        .contentRight {
+            right: 0px;
+            width: 31%;
+        }
+
     }
     
 }