Copy Code
If Code is not visible please click on HIGHLIGHT area
<span class="arrow" data-bs-toggle="dropdown" data-target="second"><i class="bi bi-plus-lg"></i></span>
Copy Code
If Code is not visible please click on HIGHLIGHT area
xxxxxxxxxx
background: linear-gradient(45deg, rgb(183, 0, 255) 20%, rgb(255, 18, 164) 100%);
1
.body{
2
width: 100%;
3
height: 100%;
4
display: flex;
5
align-items: self-start;
6
justify-content: center;
7
background: transparent;
8
}
9
10
.custom-header {
11
width: 100%;
12
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
13
background-color: #fff;
14
display: flex;
15
align-items: center;
16
justify-content: space-between;
17
padding: 10px 25px;
18
position: relative;
19
}
20
21
.custom-header .logo {
22
max-width: 150px;
Copy Code
If Code is not visible please click on HIGHLIGHT area
20
const targetElement = document.querySelector(`.${targetSelector}`);