pashute
pashute

Reputation: 4053

Where is the button-bar border color defined in onsen-ui css?

Where is the border color defined in onsen-ui version 2 css?

I'm talking about the widget defined under the "Segment" section in the documentation.

Upvotes: 0

Views: 103

Answers (1)

Chandra Kumar
Chandra Kumar

Reputation: 4205

Simple you can add this code in css file:

.ons-css .button-bar__button {
  color: rgba(224, 18, 18, 0.77) !important;
  border: 1px solid rgb(224, 85, 18) !important;
}

Upvotes: 1

Related Questions