mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-09 22:13:23 -05:00
979e60630e
The top and bottom spacing for all the pages have been streamlined. Moreover, CSS styles have been reduced.
20 lines
332 B
Vue
20 lines
332 B
Vue
<template>
|
|
<section class="section py-3">
|
|
<div class="container">
|
|
<div class="columns is-centered">
|
|
<div class="column is-four-fifths">
|
|
<slot name="content" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ContentText'
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|