eosdac / eosdac-client-legacy

This is the frontend to interact with the DAC smart contracts.
MIT License
14 stars 19 forks source link

Change "powered by eosDAC" logo to be inline SVG and style with CSS #105

Open michaeljyeates opened 5 years ago

michaeljyeates commented 5 years ago

On light themes the eosDAC logo appears in white which may be invisible.

The SVG is actually very small and can be compressed by removing unneeded properties. Then we can style the fill colour to be the same as text1 colour. This will make the logo match the text colour.

michaeljyeates commented 5 years ago

I have updated the svg, it can be included inline and styled with something like this

svg path {
    fill: ${text1};
}