block elements fixes
This commit is contained in:
File diff suppressed because one or more lines are too long
+107
-107
File diff suppressed because one or more lines are too long
Vendored
+3
-3
@@ -1,14 +1,14 @@
|
||||
{
|
||||
"main.js": {
|
||||
"file": "assets/main.0c67ca48.js",
|
||||
"file": "assets/main.bdd46049.js",
|
||||
"src": "main.js",
|
||||
"isEntry": true,
|
||||
"css": [
|
||||
"assets/main.195c7e49.css"
|
||||
"assets/main.04114af1.css"
|
||||
]
|
||||
},
|
||||
"main.css": {
|
||||
"file": "assets/main.195c7e49.css",
|
||||
"file": "assets/main.04114af1.css",
|
||||
"src": "main.css"
|
||||
}
|
||||
}
|
||||
@@ -19,13 +19,19 @@
|
||||
<div>
|
||||
<button on:click={(e) => contentIsOpen = true} class="btn btn-primary btn-sm d-xxl-none">« Content</button>
|
||||
</div>
|
||||
<div>
|
||||
<div class="d-flex align-items-center ">
|
||||
<a class="nav-item" href="{channel.lucentUrl}">{channel.name}</a>
|
||||
<a class="nav-item" href="{channel.lucentUrl}/members">Members</a>
|
||||
|
||||
{#if channel.generateCommand}
|
||||
<a href="{channel.lucentUrl}/build-report" class="btn btn-outline-primary btn-sm">Build website</a>
|
||||
<a href="{channel.lucentUrl}/build-report" class="btn btn-outline-primary btn-sm d-">Build website</a>
|
||||
{/if}
|
||||
<!-- <div>-->
|
||||
<!-- <form method="GET">-->
|
||||
<!-- <input type="search" name="filter[search_regex]" placeholder="Search"-->
|
||||
<!-- class="form-control" required/>-->
|
||||
<!-- </form>-->
|
||||
<!-- </div>-->
|
||||
</div>
|
||||
<div>
|
||||
<a class="nav-item" href="{channel.lucentUrl}/profile">
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
</script>
|
||||
|
||||
|
||||
<div class=" bg-light lx-card">
|
||||
<div class=" ">
|
||||
<div class="inline-card-wrapper">
|
||||
<BlockButtons
|
||||
bind:blockData={value}
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
|
||||
</script>
|
||||
|
||||
<div class="card editor-field d-flex">
|
||||
<div class="card block-editor-field d-flex">
|
||||
<div class="d-flex justify-content-between">
|
||||
<span class="text-muted d-block fs-6 mb-1">{block.meta.label} <i>{block.meta.info.name}</i> </span>
|
||||
<span class="text-muted d-block fs-6 mb-1">{block.meta.label}</span>
|
||||
<div class="dropdown d-inline-block">
|
||||
<button
|
||||
class="btn btn-link btn-sm"
|
||||
@@ -147,3 +147,12 @@
|
||||
{/if}
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<style>
|
||||
.block-editor-field{
|
||||
|
||||
margin: 10px 0;
|
||||
border-color: transparent;
|
||||
}
|
||||
</style>
|
||||
@@ -1,7 +1,6 @@
|
||||
.lx-nav{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 12px 20px;
|
||||
align-items: center;
|
||||
background-color: rgba(255,255,255,1);
|
||||
margin-bottom:0px ;
|
||||
|
||||
@@ -11,7 +11,6 @@ use Lucent\Channel\ChannelService;
|
||||
readonly class AuthMiddleware
|
||||
{
|
||||
public function __construct(
|
||||
private AccountService $accountService,
|
||||
private AuthService $authService,
|
||||
private ChannelService $channelService
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user