Centered Content
I'm centered content.
<template>
<div>
<div class="centered_content">
<div class="center">
<h1>I'm centered content.</h1>
</div>
</div>
</div>
</template>
<script>
export default {
name: '',
components: {
}
}
</script>
<style lang="scss" scoped>
$border-color: #dee2e6;
h1 {
padding: 0;
}
.centered_content {
padding: 2rem;
height: 60vh;
background: #F7F8FB;
display: flex;
width: 100%;
align-items: center;
justify-content: center;
}
.center {
border: 1px solid $border-color;
background: white;
padding: 6rem;
border-radius: 3px;
}
</style>
← Fifty-Fifty 404 →