Files
parcoursup/src/pages/home.riot
Bilal c1ddbd9205 $
2023-03-10 16:54:11 +01:00

64 lines
951 B
Plaintext

<home>
<style>
#home {
position: relative;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
justify-content: space-around;
margin-top: 2%;
}
#home
#right, #left generalytics, #left etablanalytics, #left loc {
box-shadow: 0px 0px 9px 1px black;
background: #7A90A4;
}
#home
#right {
align-self: flex-start;
margin-right: 3vw;
}
#home
#left {
display: flex;
flex-direction: column;
justify-content: center;
align-self: center;
}
#home
#left
generalytics {
margin-bottom: 1.3vw;
margin-top: 1.3vw;
}
</style>
<div id="home">
<div id="right">
<selector />
</div>
<div id="left">
<loc />
<generalytics />
<etablanalytics />
</div>
</div>
<script>
import * as riot from "riot";
import start from "../components/global/api/api.js"
export default {
onMounted() {
start()
}
}
</script>
</home>