rename removableEntityHeader to removableHeader
This commit is contained in:
parent
cefa1efd01
commit
3a11e5cc80
1 changed files with 6 additions and 6 deletions
12
index.html
12
index.html
|
|
@ -112,13 +112,13 @@
|
||||||
margin-top: -5px;
|
margin-top: -5px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
.removableEntityHeader {
|
.removableHeader {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: 20px 0 20px 0;
|
padding: 20px 0 20px 0;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
.removableEntityHeader > * {
|
.removableHeader > * {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -236,7 +236,7 @@
|
||||||
const newProject = document.createElement('div');
|
const newProject = document.createElement('div');
|
||||||
newProject.classList.add('project-section');
|
newProject.classList.add('project-section');
|
||||||
newProject.innerHTML = `
|
newProject.innerHTML = `
|
||||||
<div class="removableEntityHeader">
|
<div class="removableHeader">
|
||||||
<h3>Project</h3>
|
<h3>Project</h3>
|
||||||
<button type="button" class="ghost remove-btn">remove</button>
|
<button type="button" class="ghost remove-btn">remove</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -284,7 +284,7 @@
|
||||||
const newChannel = document.createElement('div');
|
const newChannel = document.createElement('div');
|
||||||
newChannel.classList.add('channel-section');
|
newChannel.classList.add('channel-section');
|
||||||
newChannel.innerHTML = `
|
newChannel.innerHTML = `
|
||||||
<div class="removableEntityHeader">
|
<div class="removableHeader">
|
||||||
<h3>Channel</h3>
|
<h3>Channel</h3>
|
||||||
<button type="button" class="ghost remove-btn">remove</button>
|
<button type="button" class="ghost remove-btn">remove</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -326,7 +326,7 @@
|
||||||
const newPlan = document.createElement('div');
|
const newPlan = document.createElement('div');
|
||||||
newPlan.classList.add('plan-section');
|
newPlan.classList.add('plan-section');
|
||||||
newPlan.innerHTML = `
|
newPlan.innerHTML = `
|
||||||
<div class="removableEntityHeader">
|
<div class="removableHeader">
|
||||||
<h3>Plan</h3>
|
<h3>Plan</h3>
|
||||||
<button type="button" class="ghost remove-btn">remove</button>
|
<button type="button" class="ghost remove-btn">remove</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -383,7 +383,7 @@
|
||||||
const newHistory = document.createElement('div');
|
const newHistory = document.createElement('div');
|
||||||
newHistory.classList.add('history-section');
|
newHistory.classList.add('history-section');
|
||||||
newHistory.innerHTML = `
|
newHistory.innerHTML = `
|
||||||
<div class="removableEntityHeader">
|
<div class="removableHeader">
|
||||||
<h3>History</h3>
|
<h3>History</h3>
|
||||||
<button type="button" class="ghost remove-btn">remove</button>
|
<button type="button" class="ghost remove-btn">remove</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue