File tree Expand file tree Collapse file tree 3 files changed +22
-5
lines changed Expand file tree Collapse file tree 3 files changed +22
-5
lines changed Original file line number Diff line number Diff line change 2
2
<button
3
3
v-bind =" $attrs"
4
4
class ="
5
- relative
6
- z-10
7
5
block
8
6
rounded-md
9
7
bg-gray-100
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<div class =" relative" >
3
- <Button @click =" state.dropdownOpen = !state.dropdownOpen" >
3
+ <Button
4
+ @click =" state.dropdownOpen = !state.dropdownOpen"
5
+ class =" relative z-10"
6
+ >
4
7
{{ triggerLabel }}
5
8
</Button >
6
9
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<BaseLayout >
3
+ <h1
4
+ class ="
5
+ mb-12
6
+ text-2xl
7
+ font-semibold
8
+ leading-none
9
+ tracking-tighter
10
+ text-black
11
+ title-font
12
+ "
13
+ >
14
+ Mark
15
+ <br />
16
+ <small class =" text-sm tracking-normal" >
17
+ ~ Quick Web Markdown Editor</small
18
+ >
19
+ </h1 >
3
20
<div class =" flex justify-between" >
4
21
<Menu triggerLabel =" Menu" class =" mr-2" >
5
22
<MenuItem
18
35
19
36
<Button
20
37
v-bind:class =" {
21
- 'bg-green-600': state.showPreview,
22
- 'text-white': state.showPreview,
38
+ 'bg-green-600 text-white hover:bg-green-400': state.showPreview,
23
39
'bg-gray-100': !state.showPreview,
24
40
}"
25
41
@click =" handlePreviewToggle"
You can’t perform that action at this time.
0 commit comments