Is there a technique to reduce the size of glyphicon-plus?
Even though I used glyphicon-plus
, the +
symbol appears thick. Here is the code snippet:
<a>{href: "#/agencies/new", class: 'btn btnadd pull-right'}
<i class="glyphicon glyphicon-plus"></i></a>
This is my style snippet:
.btnadd {
border: none;
color: white;
height: 50px;
width: 50px;
border-radius: 50%;
position: fixed;
bottom: 5%;
right: 1%;
background: #60BBEA !important;
padding: 12px;
font-size: 20px;
}
Any advice on how to make the plus sign smaller? Additionally, the plus icon is white in color, but changes to black when hovered over. Is there a way to prevent this color change?