viewerjs
viewerjs copied to clipboard
An option to make the navbar's thumbnails bigger
From what I've seen in the docs, there doesn't seem to be a way to make the navbar's thumbnails bigger. I'm working on a website that has many users who don't have great vision. It would be nice to double the size of the thumbnails. Is this doable?
You can override the navbar's style to enlarge the thumbnails.
I'd like this as well!
It's seem rather complicated to override the navbar's style, as there is a fixed width/height on 3-4-5 elements. And style is applied inline instead of in the css file.
Just add for example 4x bigger values than default:
.viewer-list {
height: 200px;
}
.viewer-list > li {
height: 200px;
width: 120px;
}