Reza
Reza

Reputation: 19913

Change ons-list look and feel to CardView

Is there any way to change onsen-ui lists (ons-list) to look like a CardView as the below picture.

enter image description here

The borders are set in background and I tried to change them and setting padding and margin with no chance.

Upvotes: 0

Views: 1405

Answers (1)

Reza
Reza

Reputation: 19913

By changing these styles I have achieved the below picture

.list__item{
    border-style:solid !important;
    border-width:1px !important;
    border-color:#ddd !important;
    box-shadow:2px 2px 1px #eee !important;
    margin:10px !important;
}

enter image description here

Upvotes: 4

Related Questions