cjerzak commited on
Commit
f2c944b
·
verified ·
1 Parent(s): 4b62285

Update app.R

Browse files
Files changed (1) hide show
  1. app.R +6 -3
app.R CHANGED
@@ -16,19 +16,22 @@ library(viridisLite)
16
  # UI
17
  # =============================
18
  ui <- dashboardPage(
 
19
  skin = "black",
20
 
21
  # =======================
22
  # HEADER
23
  # =======================
24
  dashboardHeader(
25
- style = "font-weight: 600; font-size: 13px;",
26
- a(
27
  href = "http://www.globalleadershipproject.net",
28
  "GlobalLeadershipProject.net",
29
  target = "_blank",
30
  style = "color: white; text-decoration: underline;"
31
- )
 
 
32
  ),
33
 
34
  # =======================
 
16
  # UI
17
  # =============================
18
  ui <- dashboardPage(
19
+ title = "Global Leadership Project: Country Ranks, Visualized",
20
  skin = "black",
21
 
22
  # =======================
23
  # HEADER
24
  # =======================
25
  dashboardHeader(
26
+ title = tags$span(
27
+ tags$a(
28
  href = "http://www.globalleadershipproject.net",
29
  "GlobalLeadershipProject.net",
30
  target = "_blank",
31
  style = "color: white; text-decoration: underline;"
32
+ ),
33
+ style = "font-weight: 600; font-size: 13px;" # <-- now on a tag
34
+ )
35
  ),
36
 
37
  # =======================