18 lines
336 B
Vue
18 lines
336 B
Vue
<template>
|
|
<div class="settings-empty">
|
|
<p>Select a site from the list to configure its settings</p>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.settings-empty {
|
|
flex: 1;
|
|
min-width: 320px;
|
|
padding: 48px;
|
|
text-align: center;
|
|
color: var(--text-muted);
|
|
border: 1px dashed var(--border-input);
|
|
border-radius: 12px;
|
|
}
|
|
</style>
|