소스 검색

Link to images without leading slash

master
Garrick Aden-Buie 8 년 전
부모
커밋
f0c78acea7
2개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +2
    -2
      app.R
  2. +2
    -1
      www/css/t4c.css

+ 2
- 2
app.R 파일 보기

@@ -67,8 +67,8 @@ phone_container <- function(...) {

swipe_help_row_div <- div(
class = "bottom-help text-moffitt-grey",
div(class = "bottom-help-left", img(src = "/images/swipe-left.svg", width = "50px"), p("Bad")),
div(class = "bottom-help-right", img(src = "/images/swipe-right.svg", width = "50px"), p("Okay")),
div(class = "bottom-help-left", img(src = "images/swipe-left.svg", width = "50px"), p("Bad")),
div(class = "bottom-help-right", img(src = "images/swipe-right.svg", width = "50px"), p("Okay")),
div(class = "bottom-help-middle", span("Swipe Card", class = "bottom-help-middle-text"))
)


+ 2
- 1
www/css/t4c.css 파일 보기

@@ -118,8 +118,9 @@ a:hover {
.overlay.splash {
vertical-align: middle;
text-align: center;
background-image: url("/images/splash-bg.png");
background-image: url("images/splash-bg.png");
background-size: cover;
background-color: white;
}

.splash-body {

Loading…
취소
저장