mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 20:34:08 +00:00
31 lines
511 B
Vue
31 lines
511 B
Vue
<template>
|
|
<div class="basic-layout d-flex align-items-center justify-content-center m-0 bg-white">
|
|
<child/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'BasicLayout'
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.basic-layout {
|
|
color: #636b6f;
|
|
height: 100vh;
|
|
font-weight: 100;
|
|
position: relative;
|
|
|
|
.links > a {
|
|
color: #636b6f;
|
|
padding: 0 25px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
letter-spacing: .1rem;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
</style>
|