mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
18 lines
318 B
Vue
18 lines
318 B
Vue
<template>
|
|
<div class="container">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@import '../styleguide/src/system/styles/main.scss';
|
|
@import '../styleguide/src/system/styles/shared.scss';
|
|
@import '~/assets/styles/main.scss';
|
|
|
|
.container {
|
|
padding: 5rem;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
</style>
|