fix: button style in file description

This commit is contained in:
Sean Yesmunt 2019-03-01 08:13:37 +09:00
parent 1367eef934
commit 27eb1a8dbe
3 changed files with 11 additions and 9 deletions

View file

@ -7,8 +7,6 @@ import path from 'path';
import player from 'render-media';
import FileRender from 'component/fileRender';
import LoadingScreen from 'component/common/loading-screen';
// Loading this here so we have uniform video style even if we use two different players
import 'video.js/dist/video-js.css';
type Props = {
contentType: string,

View file

@ -2,6 +2,7 @@
import React from 'react';
import { stopContextMenu } from 'util/context-menu';
import videojs from 'video.js';
import 'video.js/dist/video-js.css';
type Props = {
source: {

View file

@ -92,7 +92,9 @@
}
}
.button--link:not(:disabled) {
.button--link {
word-break: break-all;
&:not(:disabled) {
html[data-mode='dark'] & {
&:not(:hover) {
color: $lbry-teal-4;
@ -103,6 +105,7 @@
}
}
}
}
.button--load-screen {
border-bottom: 1px solid $lbry-white;