-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathHeader.test.js.snap
More file actions
64 lines (63 loc) · 1.9 KB
/
Header.test.js.snap
File metadata and controls
64 lines (63 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Header component structure remains consistent 1`] = `
<DocumentFragment>
<nav
class="navbar navbar-expand-lg navbar-light"
id="header"
>
<div
class=" flex lg:flex-row flex-col justify-center items-center w-full px-4 container"
>
<a
class="d-none d-sm-block navbar-brand"
href="/"
>
<img
alt="Logo"
class="w-24 h-24"
src="logo-white.png"
/>
</a>
<div
class="flex justify-around items-center gap-11 w-full"
>
<label
class="bg-slate-200 flex rounded-3xl p-2 h-11 w-full md:w-[40rem]"
>
<div
class="inline-block w-full md:w-40 focus:outline-none"
>
<button
class="w-full flex justify-between items-center px-4 rounded-md border outline-nonebg-slate-200 opacity-55 hover:opacity-100 text-black transition duration-200 ease-in-out"
>
JavaScript
<span
class="ml-2 transform transition-transform duration-200 ease-in-out"
>
▼
</span>
</button>
</div>
<input
autocomplete="off"
class="transition-all h-7 ml-2 border-solid border-l-2 border-l-violet-950 pl-2 duration-1000 ease-in-out focus:outline-none outline-none w-1/2 bg-transparent opacity-70 text-slate-800"
placeholder="Search"
type="text"
/>
</label>
<div
aria-hidden="true"
class="cursor-pointer max-lg:!hidden hover:scale-105 transition-all ease-linear duration-200"
style="font-size: 1.5rem;"
>
<img
alt="lua icone"
class="w-10"
src="Moon.png"
/>
</div>
</div>
</div>
</nav>
</DocumentFragment>
`;