vue-material/src/components/mdFile/mdFile.scss

22 lines
311 B
SCSS
Raw Normal View History

2016-12-28 05:51:36 +00:00
@import '../../core/stylesheets/variables.scss';
.md-file {
2016-12-29 03:55:32 +00:00
display: flex;
flex: 1;
2016-12-28 05:51:36 +00:00
2016-12-29 03:55:32 +00:00
input[type="file"] {
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
position: absolute;
clip: rect(0 0 0 0);
border: 0;
}
.md-icon {
cursor: pointer;
}
2016-12-28 05:51:36 +00:00
}