Changes

no edit summary
Line 89: Line 89:  
/* Warning templates */
 
/* Warning templates */
 
.icannwiki-warning {
 
.icannwiki-warning {
  display: flex;
+
    display: flex;
  justify-content: center; /* Centers content horizontally */
+
    justify-content: center;
  align-items: center; /* Centers content vertically */
+
    align-items: center;
  height: auto; /* Set height to auto to accommodate content */
+
    height: auto;
  margin: 0 auto; /* Centers the div horizontally */
+
    margin: 0 auto;
  padding: 20px; /* Adds some padding for better spacing */
+
    padding: 20px;
  text-align: center; /* Centers text within the div */
+
    text-align: center;
 +
    background-color: #fcba03;
 
}
 
}