An update to Irowor UI
The page on Irowor, our in-house trading platform, just got an update.
Work in Progress: Iron Warbler, Trading Platform UI
Welcome to a sneak peek into the evolution of our trading platform's user interface! In this article, we're excited to unveil a work-in-progress glimpse of our upcoming UI enhancements, offering a behind-the-scenes look at the design process and the thoughtful considerations driving our development. While still incomplete, these previews showcase our commitment to improving user experience, refining functionality, and ultimately empowering traders with an intuitive and efficient platform.
A good-looking CSS-only chip
.chipW {
background: #ddd;
padding: 50px;
}
.chip {
display: inline;
border-radius: 1em 0 0 1em;
margin-right: 32px;
padding: 0.2em 0.2em 0.2em 0.6em;
height: 32px;
background: white;
position: relative;
}
.chip::before {
content: "";
display: block;
position: absolute;
right: -16px;
top: 0;
width: 16px;
height: 32px;
border-top: 17px solid white;
border-right: 12px solid transparent;
}
.chip::after {
content: "";
display: block;
position: absolute;
right: -16px;
bottom: 0;
width: 16px;
height: 32px;
border-bottom: 17px solid white;
