diff --git a/examples/restricted_input.rs b/examples/restricted_input.rs
index 0b6a557ade1b56af06fc4884f44a505646db5891..c43c67814d312cbdc52df9aaa13ae89f12fd054f 100644
--- a/examples/restricted_input.rs
+++ b/examples/restricted_input.rs
@@ -14,8 +14,10 @@ fn setup(mut commands: Commands, mut font_system: ResMut<CosmicFontSystem>) {
     let editor = commands
         .spawn(
             CosmicEditUiBundle {
+                border_color: Color::LIME_GREEN.into(),
                 style: Style {
                     // Size and position of text box
+                    border: UiRect::all(Val::Px(4.)),
                     width: Val::Percent(20.),
                     height: Val::Px(50.),
                     left: Val::Percent(40.),