diff --git a/src/web/fileDecrypter.coffee b/src/web/fileDecrypter.coffee index 3eb0e7e..af53b60 100644 --- a/src/web/fileDecrypter.coffee +++ b/src/web/fileDecrypter.coffee @@ -1,4 +1,5 @@ import React from "react" +import { Link } from "react-router-dom" import * as crypto from "../crypto" import * as util from "../util" @@ -106,6 +107,13 @@ class FileDecrypter extends React.Component Save File } +
+ + Home + } diff --git a/src/web/styles/buttons.scss b/src/web/styles/buttons.scss index 0dc56f1..6af0acc 100644 --- a/src/web/styles/buttons.scss +++ b/src/web/styles/buttons.scss @@ -1,7 +1,7 @@ @mixin base-button { border: none; outline: none; - color: white; + color: white !important; padding: 10px 24px; margin-left: $button-margin-left; margin-right: $button-margin-right; diff --git a/src/web/styles/pastebin.scss b/src/web/styles/pastebin.scss index 57e272b..7e65bfe 100644 --- a/src/web/styles/pastebin.scss +++ b/src/web/styles/pastebin.scss @@ -21,4 +21,14 @@ top: 50%; left: 50%; transform: translate(-50%, -50%); + width: 50%; + max-width: 50%; + max-height: 100%; +} + +@media screen and ( max-width: $content-width ) { + .content-file-info { + width: 100%; + max-width: 100%; + } } \ No newline at end of file